summaryrefslogtreecommitdiff
path: root/src/inlines.c
AgeCommit message (Expand)Author
2020-05-13Don't call memcpy with NULL as 1st parameter.John MacFarlane
2020-05-13Add NOLINTNEXTLINE to avoid a useless linter error.John MacFarlane
2020-01-23Rearrange struct cmark_nodeNick Wellnhofer
2020-01-23Use C string instead of chunk for literal textNick Wellnhofer
2020-01-23Use C string instead of chunk for link URL and titleNick Wellnhofer
2019-11-11Cleaner approach to max digits for numeric entities.John MacFarlane
2019-11-11Fix entity parser (and api test) to respect length limit on numeric entities.John MacFarlane
2019-11-11Code reformatJohn MacFarlane
2019-11-11Don't allow link destinations with unbalanced unescaped parentheses.John MacFarlane
2019-04-04Update code span normalization...John MacFarlane
2019-04-03Allow empty `<>` link destination in reference link.John MacFarlane
2019-03-26Fix #289.John MacFarlane
2019-03-23Update spec; allow internal delimiter runs to match if...John MacFarlane
2019-03-19Update spec. Fix `[link](<foo\>)`.John MacFarlane
2019-03-17Avoid gcc warning for uninitialized variable.John MacFarlane
2018-11-13copy line/col info straight from opener/closerAshe Connor
2018-09-09Check for whitespace before reference title.John MacFarlane
2018-08-26Simplify code normalization, in line with spec change.John MacFarlane
2018-08-25Code span spec changes.John MacFarlane
2018-03-25Allow spaces in link destination delimited with pointy brackets.John MacFarlane
2017-11-05Merge pull request #217 from github/upstream/limit-nested-parensJohn MacFarlane
2017-11-02Merge branch 'master' into upstream/inline-sourceposAshe Connor
2017-09-14blocks: Fix quadratic behavior in `finalize`Vicent Marti
2017-08-10Skip sourcepos tracking if disabledYuki Izumi
2017-08-10Fix inlines spanning newlines, text in non-paraYuki Izumi
2017-08-09--smart: open quote can never occur right after `]` or `)`.John MacFarlane
2017-08-09Add sourcepos info for inlinesYuki Izumi
2017-08-03Reformat source code with 'make format'Nguyễn Thái Ngọc Duy
2017-07-17Fix URL scanner.Yuki Izumi
2017-07-12> 32 nested balanced parens in a link is bananasYuki Izumi
2017-07-06Avoid memcpy'ing NULL pointersPhil Turnbull
2017-06-29DeMorgan simplification of some tests in emphasis parser.John MacFarlane
2017-06-02Properly handle backslashes in link destinations.John MacFarlane
2017-04-03Fixed code for freeing delimiter stack.John MacFarlane
2017-01-08Update emphasis parsing for spec change.John MacFarlane
2017-01-05Automatic code reformatting.John MacFarlane
2017-01-05Added a test for NULL when freeing subj->last_delim.John MacFarlane
2017-01-05Cleaned up setting of lower bounds for openers.John MacFarlane
2017-01-03Fixes #178, quadratic parsing bug.John MacFarlane
2017-01-03Slight improvement of clarity of logic in emph matching.John MacFarlane
2017-01-03Revert "More sourcepos! (#169)"John MacFarlane
2017-01-03Revert "Change types for source map offsets (#174)"John MacFarlane
2017-01-03Fix "multiple of 3" determination in emph/strong parsing.John MacFarlane
2016-12-30Change types for source map offsets (#174)Nick Wellnhofer
2016-12-20More sourcepos! (#169)Mathieu Duponchelle
2016-12-01Allow balanced nested parens in link destinations (#166)Yuki Izumi
2016-11-26Allocate enough bytes for backticks array.John MacFarlane
2016-11-26Inlines: Ensure that the delimiter stack is freed in subject.John MacFarlane
2016-11-26Fixed pathological cases with backtick code spans:John MacFarlane
2016-10-30Modified print_delimiters (commented out) so it compiles again.John MacFarlane