summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorXavier Mendez <jmendeth@gmail.com>2014-04-09 13:45:17 +0200
committerXavier Mendez <jmendeth@gmail.com>2014-04-09 13:45:17 +0200
commit08b0f2c3c76098cb34146a20e0d6228d2a2ccf09 (patch)
tree78247c801ef7ce194b98def5477c50c1c54d3dc0 /bin
parentf62c5a79bb47acaa3084e3ccda6ddc0fbf616024 (diff)
downloadrust-hoedown-08b0f2c3c76098cb34146a20e0d6228d2a2ccf09.tar.gz
Simplify some code regarding fenced blocks
Diffstat (limited to 'bin')
-rw-r--r--bin/hoedown.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/hoedown.c b/bin/hoedown.c
index 812b1f6..c6b5bdc 100644
--- a/bin/hoedown.c
+++ b/bin/hoedown.c
@@ -58,7 +58,7 @@ static struct extension_info extensions_info[] = {
{HOEDOWN_EXT_FENCED_CODE, "fenced-code", "Parse fenced code blocks."},
{HOEDOWN_EXT_FOOTNOTES, "footnotes", "Parse footnotes."},
- {HOEDOWN_EXT_AUTOLINK, "autolink", "Automatically turn URLs into links."},
+ {HOEDOWN_EXT_AUTOLINK, "autolink", "Automatically turn safe URLs into links."},
{HOEDOWN_EXT_STRIKETHROUGH, "strikethrough", "Parse ~~stikethrough~~ spans."},
{HOEDOWN_EXT_UNDERLINE, "underline", "Parse _underline_ instead of emphasis."},
{HOEDOWN_EXT_HIGHLIGHT, "highlight", "Parse ==highlight== spans."},