summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Mendez <me@jmendeth.com>2015-01-31 09:36:23 +0100
committerXavier Mendez <me@jmendeth.com>2015-01-31 09:36:23 +0100
commit59243b5499d6af594a90cb36f8088fd6dc227feb (patch)
tree727e2c74bf82694b11193a843e6f111a8bcd2235
parentef84eab70270a32254f784c4bed7118981bdcaf0 (diff)
parent9b789d24a52c6ebf4e86f6b7213eb669bfe03a71 (diff)
downloadrust-hoedown-59243b5499d6af594a90cb36f8088fd6dc227feb.tar.gz
Merge pull request #149 from blaenk/underline-fix
allow the HOEDOWN_EXT_UNDERLINE to work
-rw-r--r--src/document.c2
-rw-r--r--test/Tests/Underline.html1
-rw-r--r--test/Tests/Underline.text1
-rw-r--r--test/config.json5
4 files changed, 8 insertions, 1 deletions
diff --git a/src/document.c b/src/document.c
index ab825b8..c94a347 100644
--- a/src/document.c
+++ b/src/document.c
@@ -2751,7 +2751,7 @@ hoedown_document_new(
memset(doc->active_char, 0x0, 256);
- if (doc->md.emphasis || doc->md.double_emphasis || doc->md.triple_emphasis) {
+ if (doc->md.emphasis || doc->md.double_emphasis || doc->md.triple_emphasis || doc->md.underline) {
doc->active_char['*'] = MD_CHAR_EMPHASIS;
doc->active_char['_'] = MD_CHAR_EMPHASIS;
if (extensions & HOEDOWN_EXT_STRIKETHROUGH)
diff --git a/test/Tests/Underline.html b/test/Tests/Underline.html
new file mode 100644
index 0000000..c2a8bba
--- /dev/null
+++ b/test/Tests/Underline.html
@@ -0,0 +1 @@
+<p>This <u>underline</u> will work.</p>
diff --git a/test/Tests/Underline.text b/test/Tests/Underline.text
new file mode 100644
index 0000000..8068546
--- /dev/null
+++ b/test/Tests/Underline.text
@@ -0,0 +1 @@
+This _underline_ will work.
diff --git a/test/config.json b/test/config.json
index b6ecb55..d3e170e 100644
--- a/test/config.json
+++ b/test/config.json
@@ -101,6 +101,11 @@
"input": "Tests/Math.text",
"output": "Tests/Math.html",
"flags": ["--math"]
+ },
+ {
+ "input": "Tests/Underline.text",
+ "output": "Tests/Underline.html",
+ "flags": ["--underline"]
}
]
}