summaryrefslogtreecommitdiff
path: root/bin/hoedown.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/hoedown.c')
-rw-r--r--bin/hoedown.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/hoedown.c b/bin/hoedown.c
index c6b5bdc..49a22d9 100644
--- a/bin/hoedown.c
+++ b/bin/hoedown.c
@@ -74,14 +74,11 @@ 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_SKIP_STYLE, "skip-style", "Strip <style> tags."},
- {HOEDOWN_HTML_SKIP_IMAGES, "skip-images", "Don't render images."},
- {HOEDOWN_HTML_SKIP_LINKS, "skip-links", "Don't render links."},
+ {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."},
- {HOEDOWN_HTML_ESCAPE, "escape", "Escape all HTML."},
};
static const char *category_prefix = "all-";