summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorXavier Mendez <jmendeth@gmail.com>2014-07-31 14:54:53 +0200
committerXavier Mendez <jmendeth@gmail.com>2014-07-31 14:54:53 +0200
commit0653bd8d076280327a8007eb46d22956285f4793 (patch)
tree1d0ec6cc900e71f593babcec423e4ef4279b7a53 /bin
parente76c6a84770d66d9fc5c39611cea7b7e939c90e5 (diff)
downloadrust-hoedown-0653bd8d076280327a8007eb46d22956285f4793.tar.gz
html: Remove EXPAND_TABS (fixes #85)
Useless flag inherited from Sundown. Has no effect since tabs are expanded on preprocessing before even rendering.
Diffstat (limited to 'bin')
-rw-r--r--bin/hoedown.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/hoedown.c b/bin/hoedown.c
index 49a22d9..6a18d8b 100644
--- a/bin/hoedown.c
+++ b/bin/hoedown.c
@@ -75,7 +75,6 @@ static struct extension_info extensions_info[] = {
static struct html_flag_info html_flags_info[] = {
{HOEDOWN_HTML_SKIP_HTML, "skip-html", "Strip all HTML tags."},
{HOEDOWN_HTML_ESCAPE, "escape", "Escape all HTML."},
- {HOEDOWN_HTML_EXPAND_TABS, "expand-tabs", "Expand tabs to spaces."},
{HOEDOWN_HTML_SAFELINK, "safelink", "Only allow links to safe protocols."},
{HOEDOWN_HTML_HARD_WRAP, "hard-wrap", "Render each linebreak as <br>."},
{HOEDOWN_HTML_USE_XHTML, "xhtml", "Render XHTML."},