index
:
cmark
master
My own fork of cmark for commonmark conversion
KatolaZ
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
blocks.c
Age
Commit message (
Expand
)
Author
2016-01-07
Allow multiline setext header content, as per spec.
John MacFarlane
2015-12-28
Reformat sources.
John MacFarlane
2015-12-28
Replaced hard-coded 4 with TAB_STOP.
John MacFarlane
2015-12-28
Rename NODE_HTML -> NODE_HTML_BLOCK, NODE_INLINE_HTML -> NODE_HTML_INLINE.
John MacFarlane
2015-12-28
Use input not parser->curline to determine last line length.
John MacFarlane
2015-12-22
Rename hrule -> thematic_break.
John MacFarlane
2015-12-22
CMARK_NODE_HEADER -> CMARK_NODE_HEADING.
John MacFarlane
2015-12-22
Rename 'header' -> 'heading'.
John MacFarlane
2015-12-19
Use fully qualified versions of constants.
John MacFarlane
2015-08-10
Remove need to disable MSVC warning 4244
Kevin Wojniak
2015-08-09
Fixed bug with HRULE after blank line.
John MacFarlane
2015-08-09
Check for empty string before trying to look at line ending.
John MacFarlane
2015-08-09
Make sure every line fed to S_process_line ends with `\n`.
John MacFarlane
2015-08-08
Treat line ending with EOF as ending with newline.
John MacFarlane
2015-08-06
Prefix utf8proc functions to avoid conflict with existing library
Kevin Wojniak
2015-07-27
Disallow list item starting with multiple blank lines.
John MacFarlane
2015-07-27
Use clang-format, llvm style, for formatting.
John MacFarlane
2015-07-16
Allow tabs before closing ##s in ATX header
John MacFarlane
2015-07-14
astyle reformatting.
John MacFarlane
2015-07-14
Limit 'start' to 8 digits to avoid undefined behavior (overflows).
John MacFarlane
2015-07-11
Removed dependence on debug.h.
John MacFarlane
2015-07-10
Updates for new HTML block spec.
John MacFarlane
2015-06-18
Minor astyle reformatting.
John MacFarlane
2015-06-17
Fixed off-by-one error in line splitting routine.
John MacFarlane
2015-06-16
Added `CMARK_OPT_VALIDATE_UTF8` option.
John MacFarlane
2015-06-16
is_blank: recognize tab as a blank character.
John MacFarlane
2015-06-16
Removed utf8 validation.
John MacFarlane
2015-06-16
Renamed utf8proc_detab as utf8proc_check, removed detabbing function.
John MacFarlane
2015-06-16
Preliminary changes for new tab handling.
John MacFarlane
2015-06-16
astyle formatting changes.
John MacFarlane
2015-06-11
Removed "add newline if line doesn't have one."
John MacFarlane
2015-06-07
Check for overflow in S_parser_feed
Nick Wellnhofer
2015-06-07
Convert code base to strbuf_t
Nick Wellnhofer
2015-06-06
Rename `is_line_end_char` to `S_is_line_end_char`.
John MacFarlane
2015-06-06
Factored out `S_find_first_nonspace` in `S_proces_line`.
John MacFarlane
2015-06-06
astyle formatting changes.
John MacFarlane
2015-06-06
Allow new list item container indented > 4 spaces.
John MacFarlane
2015-06-04
Cleaned up with is_line_end_char function.
John MacFarlane
2015-06-03
Revised "add newline to end if missing" for performance.
John MacFarlane
2015-06-03
Merge branch 'master' of https://github.com/btrask/cmark into btrask-master
John MacFarlane
2015-06-03
Fixed bug in list item parsing when items indented >= 4 spaces.
John MacFarlane
2015-04-07
Check length before reading.
Ben Trask
2015-04-07
Try to match existing style better.
Ben Trask
2015-04-07
Bug fixes for CRLF support.
Ben Trask
2015-04-07
Fix regression in remove_trailing_blank_lines().
Ben Trask
2015-04-07
Support for CRLF and CR line endings.
Ben Trask
2015-03-27
Removed an unnecessary check.
John MacFarlane
2015-02-20
Cleaned up some comments.
John MacFarlane
2015-02-19
Fixed use-after-free error.
John MacFarlane
2015-02-19
Fixed use-after-free bug.
John MacFarlane
[next]