summaryrefslogtreecommitdiff
path: root/src/document.c
diff options
context:
space:
mode:
authorXavier Mendez <me@jmendeth.com>2015-04-08 00:18:20 +0200
committerXavier Mendez <me@jmendeth.com>2015-04-08 00:18:20 +0200
commit5951df7980f75cc0619ef68e925e2a4481b6a0b8 (patch)
treeb74e0a04df81b4a2f37d29bc893fe1460d7bbc0c /src/document.c
parent2b890c168326591e8d283cad7c2c9e6cb34d18db (diff)
parent2a4cf17c70e6572ed42cdca3ea7ca3e768ed17be (diff)
downloadrust-hoedown-5951df7980f75cc0619ef68e925e2a4481b6a0b8.tar.gz
Merge branch 'master' of https://github.com/hoedown/hoedown
Diffstat (limited to 'src/document.c')
-rw-r--r--src/document.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/document.c b/src/document.c
index 613fd6d..27c17b2 100644
--- a/src/document.c
+++ b/src/document.c
@@ -2752,6 +2752,10 @@ hoedown_document_new(
memset(doc->active_char, 0x0, 256);
+ if (extensions & HOEDOWN_EXT_UNDERLINE && doc->md.underline) {
+ doc->active_char['_'] = MD_CHAR_EMPHASIS;
+ }
+
if (doc->md.emphasis || doc->md.double_emphasis || doc->md.triple_emphasis) {
doc->active_char['*'] = MD_CHAR_EMPHASIS;
doc->active_char['_'] = MD_CHAR_EMPHASIS;
@@ -2767,7 +2771,7 @@ hoedown_document_new(
if (doc->md.linebreak)
doc->active_char['\n'] = MD_CHAR_LINEBREAK;
- if (doc->md.image || doc->md.link)
+ if (doc->md.image || doc->md.link || doc->md.footnotes || doc->md.footnote_ref)
doc->active_char['['] = MD_CHAR_LINK;
doc->active_char['<'] = MD_CHAR_LANGLE;