no meta markup by default
This commit is contained in:
parent
91a65bb571
commit
3aa4f049f8
@ -100,7 +100,7 @@ ignore_patterns: [] # List of regexes : Matching sections or articles will be
|
|||||||
|
|
||||||
# Text body processing settings
|
# Text body processing settings
|
||||||
remove_html: true # Should we clean remaining HTML blocks
|
remove_html: true # Should we clean remaining HTML blocks
|
||||||
metadata_markup: true # Should we keep markup (Markdown) in metadata fields (like title)
|
metadata_markup: false # Should we keep markup (Markdown) in metadata fields (like title)
|
||||||
unknown_char_replacement: ?? # String to replace broken encoding that cannot be repaired
|
unknown_char_replacement: ?? # String to replace broken encoding that cannot be repaired
|
||||||
|
|
||||||
# Settings you probably don’t want to modify
|
# Settings you probably don’t want to modify
|
||||||
|
@ -71,7 +71,7 @@ class Configuration:
|
|||||||
export_drafts: bool = True # Should we export drafts as draft:true articles
|
export_drafts: bool = True # Should we export drafts as draft:true articles
|
||||||
export_empty: bool = True # Should we export empty articles
|
export_empty: bool = True # Should we export empty articles
|
||||||
remove_html: bool = True # Should spip2md remove every HTML tags
|
remove_html: bool = True # Should spip2md remove every HTML tags
|
||||||
metadata_markup: bool = True # Should spip2md keep the markup in metadata fields
|
metadata_markup: bool = False # Should spip2md keep the markup in metadata fields
|
||||||
title_max_length: int = 40 # Maximum length of a single title for directory names
|
title_max_length: int = 40 # Maximum length of a single title for directory names
|
||||||
unknown_char_replacement: str = "??" # Replaces unknown characters
|
unknown_char_replacement: str = "??" # Replaces unknown characters
|
||||||
clear_log: bool = True # Clear log before every run instead of appending to
|
clear_log: bool = True # Clear log before every run instead of appending to
|
||||||
|
Loading…
Reference in New Issue
Block a user