webgen v4.0.6 Changed parameters for markdown to have a standard lineending
This commit is contained in:
parent
254bf1f9e6
commit
8f7004ad08
1 changed files with 10 additions and 0 deletions
10
webgen.py
10
webgen.py
|
@ -23,6 +23,16 @@ dospellcheck = os.getenv("SPELLCHECK")
|
||||||
spellcheck = "aspell"
|
spellcheck = "aspell"
|
||||||
spellcheckparam = "-c"
|
spellcheckparam = "-c"
|
||||||
|
|
||||||
|
# Configure Markdown, activate "break-on-newline" for letting a line end without havin to put doublespaces there.
|
||||||
|
#
|
||||||
|
# More options:
|
||||||
|
# break-on-newline, code-friendly, cuddled-lists, fenced-code-blocks,
|
||||||
|
# footnotes, header-ids, highlightjs-lang, html-classes, link-patterns,
|
||||||
|
# markdown-in-html, numbering, pyshell, smarty-pants, spoiler, strike,
|
||||||
|
# tag-friendly, tables, toc, use-file-vars, wiki-tables, xml
|
||||||
|
|
||||||
|
markdown.Markdown.extras = ["break-on-newline"]
|
||||||
|
|
||||||
fileending = ""
|
fileending = ""
|
||||||
locale.setlocale(locale.LC_ALL, "")
|
locale.setlocale(locale.LC_ALL, "")
|
||||||
clear = "\x1b[2J\x1b[H"
|
clear = "\x1b[2J\x1b[H"
|
||||||
|
|
Loading…
Reference in a new issue