Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-10-07 | Merge branch 'master' into newemphasis | John MacFarlane | |
Conflicts: spec.txt | |||
2014-10-07 | Cleaned up entity section of spec. | John MacFarlane | |
We convert entities to unicode characters, not UTF-8 sequences. (Though they might ultimately be output that way.) | |||
2014-10-07 | Adjusted tests for new js parser. | John MacFarlane | |
2014-10-07 | Removed spurious 'and', reflowed. | John MacFarlane | |
2014-10-07 | Removed spurious 'and', reflowed. | John MacFarlane | |
2014-10-06 | Merge pull request #143 from aJanuary/patch-1 | John MacFarlane | |
Changes append to prepend | |||
2014-09-29 | Merge branch 'master' into newemphasis | John MacFarlane | |
Conflicts: Makefile js/stmd.js | |||
2014-09-29 | Adds missing newlines | Andrew January | |
2014-09-29 | Changes urls to use example.com | Andrew January | |
As per RFC 2606 it is recommended to use example.com for sample urls in specifications. One example is left using "foo+special@Bar.baz-bar0.com" because it is designed to demonstrate the complexity of email addresses that should be permitted. | |||
2014-09-29 | Changes append to prepend | Andrew January | |
When adding something to the beginning it is "prepending", not "appending" | |||
2014-09-19 | spec: Fixed date, version. | John MacFarlane | |
Closes #133. | |||
2014-09-17 | Merge pull request #66 from vmg/revamp | John MacFarlane | |
Enfastenate the C Parsenator | |||
2014-09-16 | typo fix | Alex Kocharin | |
2014-09-12 | Add example from issue #94 about indented code block closing fences | Bengt Lüers | |
2014-09-11 | Updated test cases in spec to reflect last change. | John MacFarlane | |
2014-09-11 | Updated spec (but not yet examples) with new rules. | John MacFarlane | |
These reflect the current parsing algorithm. We now get a symmetry that we lacked before: **a* b* *a *b** are both emphasis within emphasis. One asymmetry remains: **a* has no emphasis, while *a** has emphasis. Further tweaking of the algorithm could regularize this. | |||
2014-09-11 | Revert "spec: change nesting order of strong/emph in ***a***." | John MacFarlane | |
This reverts commit 49a03b7666e2901d1ab2813fc0bdd23968d22979. | |||
2014-09-11 | spec: change nesting order of strong/emph in ***a***. | John MacFarlane | |
2014-09-11 | Fix another broken link. | Artyom Kazak | |
2014-09-11 | Fix a broken link to the “A parsing strategy” section. | Artyom Kazak | |
(Line lengths changed so that the link wouldn't have to be broken.) | |||
2014-09-09 | `code`, not `pre`. | Artyom Kazak | |
2014-09-09 | Update the spec with better entity handling | Vicent Marti | |
2014-09-09 | This is going well | Vicent Marti | |
2014-09-09 | This spec was correct | Vicent Marti | |
2014-09-09 | 5 failed | Vicent Marti | |
2014-09-09 | 433/8 | Vicent Marti | |
2014-09-09 | 426/15 | Vicent Marti | |
2014-09-07 | Fixed #48. | John MacFarlane | |
- Fixed js and C code. - Added two test cases to spec. | |||
2014-09-06 | Spec, js, C: Added iframe to block-level HTML tags. | John MacFarlane | |
Closes #88. | |||
2014-09-06 | spec: Clarify that a blank line may have no characters. | John MacFarlane | |
Closes #79. | |||
2014-09-06 | Don't treat "br" as a block-level HTML tag. | John MacFarlane | |
Fixed in spec and both implementations. Closes #67. | |||
2014-09-06 | Merge pull request #54 from cebe/patch-1 | John MacFarlane | |
Updated usage information for runtests.pl | |||
2014-09-06 | Fixed extra space before period. | John MacFarlane | |
This is @robinst's fix in #20, which couldn't be merged automatically. Thanks, @robinst. | |||
2014-09-06 | Merge pull request #71 from mathiasbynens/patch-1 | John MacFarlane | |
Make fenced code blocks add the `class` to `code` rather than `pre` | |||
2014-09-06 | Updated date in spec. | John MacFarlane | |
2014-09-06 | replace Standard Markdown with CommonMark | Pablo Rodríguez | |
2014-09-05 | Simplified unicode tab escaping test. | John MacFarlane | |
2014-09-05 | Updated tab expansion tests to use code blocks. | John MacFarlane | |
Otherwise the test program collapses spaces in normalizing. | |||
2014-09-05 | Make fenced code blocks add the `class`to `code` rather than `pre` | Mathias Bynens | |
This matches the convention set out in the HTML Living Standard (http://www.whatwg.org/specs/web-apps/current-work/multipage/semantics.html#the-code-element) and makes existing syntax highlighting scripts recognize the programming language used. Ref. http://talk.standardmarkdown.com/t/fenced-code-blocks-should-add-class-to-code-rather-than-pre-matching-the-html-best-practice/136 | |||
2014-09-04 | Fixed typo. Closes #44. Thanks, @fordhurley. | John MacFarlane | |
2014-09-04 | spec: Use closing tags on a elements. | John MacFarlane | |
Closes #46, closes #40. | |||
2014-09-04 | Fixed link. | John MacFarlane | |
2014-09-04 | Updated usage information for runtests.pl | Carsten Brandt | |
As this is how it introduces itself when run without parameters and also how it works properly. ``` $ perl runtests.pl runtests.pl SPEC PROGRAM Set ANSI_COLORS_DISABLED=1 if you redirect to a file. Set PATT='...' to restrict tests to sections matching a regex. ``` | |||
2014-09-04 | Merge pull request #32 from emwap/patch-1 | John MacFarlane | |
Fix typo | |||
2014-09-04 | Merge pull request #34 from cebe/patch-1 | John MacFarlane | |
Fixed some typos in spec.txt | |||
2014-09-04 | Capitalize Markdown. | John MacFarlane | |
2014-09-04 | Fixed some typos in spec.txt | Carsten Brandt | |
2014-09-04 | Fix typo | Anders Persson | |
2014-09-03 | spec: Added a test with single escaped # at end of ATX header. | John MacFarlane | |
2014-09-03 | A line can have zero characters. | John MacFarlane | |