Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-25 | Clarified mention of "lazy line" with link and further example. | John MacFarlane | |
See #91. | |||
2014-10-25 | Updated spec date/version. | John MacFarlane | |
2014-10-25 | Spec: Resolve hrule/setext header ambiguity. | John MacFarlane | |
Closes #31. | |||
2014-10-25 | Spec: Clarify that a list can interrupt a paragraph. | John MacFarlane | |
Include a discussion of the principle of uniformity that motivates this. Closes #26. | |||
2014-10-25 | README tweaks (remove refs to stmd/), added benchmarks. | John MacFarlane | |
2014-10-24 | Updated TODO. | John MacFarlane | |
2014-10-24 | Spec version to 0.4. | John MacFarlane | |
2014-10-24 | Spec: improved an example for hrules. | John MacFarlane | |
Suggestion due to BrendanLong from http://talk.commonmark.org/t/example-16-is-potentially-confusing/114 | |||
2014-10-24 | Rename js/bin/markdown -> js/bin/commonmark. | John MacFarlane | |
2014-10-24 | js/bin/markdown: added `--ast` flag and multiple filename args. | John MacFarlane | |
2014-10-24 | Added .editorconfig. | John MacFarlane | |
Thanks to @lipis. Closes #50. This may need tweaking. | |||
2014-10-24 | Merge pull request #140 from arthur-peka/master | John MacFarlane | |
Changing some variable names to improve code readability | |||
2014-10-24 | More stmd -> commonmark changes. | John MacFarlane | |
2014-10-24 | Updated TODO. | John MacFarlane | |
2014-10-24 | Renamed javascript implementation to commonmark.js. | John MacFarlane | |
2014-10-24 | Renamed c program and library stmd -> cmark. | John MacFarlane | |
Also renamed internal library functions accordingly. | |||
2014-10-24 | Merge branch 'abduelhamit-master' | John MacFarlane | |
2014-10-24 | Only define MIN if it's undefined. | John MacFarlane | |
Note: it is defined in GNU libc (Linux) and FreeBSD and OSX sys/param.h. | |||
2014-10-24 | Merge branch 'master' of https://github.com/abduelhamit/stmd into ↵ | John MacFarlane | |
abduelhamit-master | |||
2014-10-24 | Spec: say explicitly that a character is a unicode code point. | John MacFarlane | |
2014-10-24 | Add a newline to a line that doesn't end with one. | John MacFarlane | |
Closes #115. | |||
2014-10-24 | Spec: Added rule clarifying setext header content. | John MacFarlane | |
Also several test cases. Closes #13. | |||
2014-10-24 | Spec: altered processing instruction test. | John MacFarlane | |
This catches the edge case described in #117. | |||
2014-10-24 | Fixed regex for processing instruction. | John MacFarlane | |
We now handle properly `<?php echo '>'; ?>`. Closes #117. | |||
2014-10-24 | Merge branch 'tchetch-master' | John MacFarlane | |
2014-10-24 | Merge branch 'master' of https://github.com/tchetch/stmd into tchetch-master | John MacFarlane | |
Conflicts: src/inlines.c | |||
2014-10-24 | Use unsigned char, not char, throughout. | John MacFarlane | |
Closes #43. | |||
2014-10-24 | Added test case with heading in list item. | John MacFarlane | |
2014-10-24 | Spec: Made background color for code spans work more consistently. | John MacFarlane | |
Closes #162. | |||
2014-10-24 | Fixed typo. Closes #110. | John MacFarlane | |
2014-10-24 | README: Added note on protecting vs XSS attacks. | John MacFarlane | |
Closes #61. | |||
2014-10-24 | README: Fixed some javascript instructions. | John MacFarlane | |
2014-10-24 | Tweaked CSS in spec template so inline code has background color. | John MacFarlane | |
2014-10-24 | Update version and date on spec. | John MacFarlane | |
Switch to an 0.x version number to indicate more clearly that this is provisional. | |||
2014-10-24 | More tweaks on emph/strong spec and tests. | John MacFarlane | |
2014-10-24 | Removed test case with only opening emph markers. | John MacFarlane | |
It's not big enough to reveal stack problems. | |||
2014-10-24 | Merge branch 'emphstack' | John MacFarlane | |
Conflicts: Makefile js/lib/inlines.js | |||
2014-10-24 | Added tricky recursive case for emph/strong. | John MacFarlane | |
2014-10-24 | Revised spec for new emph/strong rules. | John MacFarlane | |
These rules go with the new stack-based parser for emph/strong. | |||
2014-10-24 | js: Removed memoization. | John MacFarlane | |
It is no longer needed with the new stack-based emphasis parsing. | |||
2014-10-24 | Improved leakcheck so that all syntax features are tested. | John MacFarlane | |
2014-10-24 | js: Use linked list instead of array for emphasis_openers stack. | John MacFarlane | |
2014-10-24 | js: renamed emph_stack -> emphasis_openers. | John MacFarlane | |
2014-10-24 | Fixed a memory allocation error. | John MacFarlane | |
2014-10-24 | Fixed memory leak by freeing all unused emphasis openers. | John MacFarlane | |
2014-10-24 | Renamed subj->last_emphasis to subj->emphasis_openers. | John MacFarlane | |
2014-10-23 | inlines.js: Implemented stack-based emph parsing. | John MacFarlane | |
2014-10-19 | Removed now-undeeded 'first' parameter in parse_inline. | John MacFarlane | |
2014-10-19 | Whitespace changes. | John MacFarlane | |
2014-10-18 | parse_inline: Correctly move to last inline. | John MacFarlane | |