File tree 3 files changed +5
-5
lines changed
3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 42
42
was incomplete and one corner case remained unfixed. This is now addressed.
43
43
44
44
- [ #231 ] ( https://github.com/mity/md4c/issues/231 ) :
45
- ` md2html --full-html ` now emits ` <meta charset="UTF-8"> ` in the HTML header.
45
+ ` md2html --full-html ` now emits ` <meta charset="UTF-8"> ` in the HTML header.
46
46
47
47
48
48
## Version 0.5.1
Original file line number Diff line number Diff line change @@ -219,9 +219,9 @@ language) are full DOM-like parsers: They construct abstract syntax tree (AST)
219
219
representation of the whole Markdown document. That takes time and it leads to
220
220
bigger memory footprint.
221
221
222
- Build AST is completely fine as long as you really need it. If you don't need
223
- it, there is a very high chance that using MD4C will be substantially faster
224
- and less hungry in terms of memory consumption.
222
+ Building AST is completely fine as long as you need it. If you don't, there is
223
+ a very high chance that using MD4C will be substantially faster and less hungry
224
+ in terms of memory consumption.
225
225
226
226
Last but not least, some Markdown parsers are implemented in a naive way. When
227
227
fed with a [ smartly crafted input pattern] ( test/pathological_tests.py ) , they
Original file line number Diff line number Diff line change @@ -986,7 +986,7 @@ struct MD_UNICODE_FOLD_INFO_tag {
986
986
* line breaks with given replacement character.
987
987
*
988
988
* NOTE: Caller is responsible to make sure the buffer is large enough.
989
- * (Given the output is always shorter then input, (end - beg) is good idea
989
+ * (Given the output is always shorter than input, (end - beg) is good idea
990
990
* what the caller should allocate.)
991
991
*/
992
992
static void
You can’t perform that action at this time.
0 commit comments