Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions md2html/md2html.c
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,8 @@


/* Global options. */
static unsigned parser_flags = 0;
#ifndef MD4C_USE_ASCII
static unsigned renderer_flags = MD_HTML_FLAG_DEBUG | MD_HTML_FLAG_SKIP_UTF8_BOM;
#else
static unsigned renderer_flags = MD_HTML_FLAG_DEBUG;
#endif
static unsigned parser_flags = MD_FLAG_SKIPBOM;
static unsigned renderer_flags = MD_HTML_FLAG_DEBUG;
static int want_fullhtml = 0;
static int want_xhtml = 0;
static int want_stat = 0;
Expand Down
Loading