1
0
mirror of https://github.com/danog/blackfriday.git synced 2024-11-30 04:29:13 +01:00

Add EXTENSION_BACKSLASH_LINE_BREAK

This commit is contained in:
neclepsio 2015-04-22 14:10:44 +02:00
parent c1917970db
commit 68a3c498f6

View File

@ -42,6 +42,7 @@ const (
EXTENSION_HEADER_IDS // specify header IDs with {#id}
EXTENSION_TITLEBLOCK // Titleblock ala pandoc
EXTENSION_AUTO_HEADER_IDS // Create the header ID from the text
EXTENSION_BACKSLASH_LINE_BREAK // translate trailing backslashes into line breaks
commonHtmlFlags = 0 |
HTML_USE_XHTML |
@ -56,7 +57,8 @@ const (
EXTENSION_AUTOLINK |
EXTENSION_STRIKETHROUGH |
EXTENSION_SPACE_HEADERS |
EXTENSION_HEADER_IDS
EXTENSION_HEADER_IDS |
EXTENSION_BACKSLASH_LINE_BREAK
)
// These are the possible flag values for the link renderer.