Commit 47b21fb5447ff128f3e177f27ec012fb1c063b8c

Martin Mitas 2020-05-04T12:57:41

CHANGELOG.md: Fix the spelling of the HTML renderer flags.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3ff3e8c..a9841ea 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -10,14 +10,14 @@ New features:
    utility, is now built as a standalone library, in order to simplify its
    reuse in applications.
 
- * With `MD_RENDER_FLAG_SKIP_UTF8_BOM`, the HTML renderer now skips UTF-8 byte
+ * With `MD_HTML_FLAG_SKIP_UTF8_BOM`, the HTML renderer now skips UTF-8 byte
    order mark (BOM) if the input begins with it, before passing to the Markdown
    parser.
 
    `md2html` utility automatically enables the flag (unless it is custom-built
    with `-DMD4C_USE_ASCII`).
 
- * With `MD_RENDER_FLAG_XHTML`, The HTML renderer generates XHTML instead of
+ * With `MD_HTML_FLAG_XHTML`, The HTML renderer generates XHTML instead of
    HTML.
 
    This effectively means `<br />` instead of `<br>` and similarly `<hr />`