summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bin/hoedown.c1
-rw-r--r--src/html.h7
2 files changed, 3 insertions, 5 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."},
diff --git a/src/html.h b/src/html.h
index dbfde75..46b424b 100644
--- a/src/html.h
+++ b/src/html.h
@@ -14,10 +14,9 @@ extern "C" {
typedef enum {
HOEDOWN_HTML_SKIP_HTML = (1 << 0),
HOEDOWN_HTML_ESCAPE = (1 << 1),
- HOEDOWN_HTML_EXPAND_TABS = (1 << 2),
- HOEDOWN_HTML_SAFELINK = (1 << 3),
- HOEDOWN_HTML_HARD_WRAP = (1 << 4),
- HOEDOWN_HTML_USE_XHTML = (1 << 5)
+ HOEDOWN_HTML_SAFELINK = (1 << 2),
+ HOEDOWN_HTML_HARD_WRAP = (1 << 3),
+ HOEDOWN_HTML_USE_XHTML = (1 << 4)
} hoedown_html_flags;
typedef enum {