-
Notifications
You must be signed in to change notification settings - Fork 3.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[commonmark] make html comments, html inlines, html blocks and links compliant #1135
Commits on Mar 4, 2018
-
Configuration menu - View commit details
-
Copy full SHA for ffd386a - Browse repository at this point
Copy the full SHA ffd386aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 056f4e2 - Browse repository at this point
Copy the full SHA 056f4e2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9450b09 - Browse repository at this point
Copy the full SHA 9450b09View commit details -
new html comment rule to comply with commonmark (html5).
non-compliant: allow `--` inside html comments. adjust inline tag rule accordingly.
Configuration menu - View commit details
-
Copy full SHA for 652ba97 - Browse repository at this point
Copy the full SHA 652ba97View commit details -
Configuration menu - View commit details
-
Copy full SHA for b2611c1 - Browse repository at this point
Copy the full SHA b2611c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for f2ebd43 - Browse repository at this point
Copy the full SHA f2ebd43View commit details -
Configuration menu - View commit details
-
Copy full SHA for 27d4da6 - Browse repository at this point
Copy the full SHA 27d4da6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4de3c98 - Browse repository at this point
Copy the full SHA 4de3c98View commit details -
Configuration menu - View commit details
-
Copy full SHA for c12c5d7 - Browse repository at this point
Copy the full SHA c12c5d7View commit details -
Configuration menu - View commit details
-
Copy full SHA for 316db0a - Browse repository at this point
Copy the full SHA 316db0aView commit details -
remove superfluous test fixture (already covered by original/links_re…
…ference_style and new/cm_link_defs)
Configuration menu - View commit details
-
Copy full SHA for d89012f - Browse repository at this point
Copy the full SHA d89012fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8e30cd2 - Browse repository at this point
Copy the full SHA 8e30cd2View commit details -
Configuration menu - View commit details
-
Copy full SHA for bcf9abb - Browse repository at this point
Copy the full SHA bcf9abbView commit details -
option
pedantic
overridesgfm
, and turns off gfm, tables and breaks.FIXME update README
Configuration menu - View commit details
-
Copy full SHA for 1b8ca2b - Browse repository at this point
Copy the full SHA 1b8ca2bView commit details -
Configuration menu - View commit details
-
Copy full SHA for c1ef53c - Browse repository at this point
Copy the full SHA c1ef53cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 56972f8 - Browse repository at this point
Copy the full SHA 56972f8View commit details -
new rule for html blocks, to comply with commonmark.
BREAKING CHANGE: inline markdown is not parsed inside html blocks.
Configuration menu - View commit details
-
Copy full SHA for d08039e - Browse repository at this point
Copy the full SHA d08039eView commit details -
Configuration menu - View commit details
-
Copy full SHA for 7abf702 - Browse repository at this point
Copy the full SHA 7abf702View commit details
Commits on Mar 5, 2018
-
Configuration menu - View commit details
-
Copy full SHA for fb2f317 - Browse repository at this point
Copy the full SHA fb2f317View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0904e44 - Browse repository at this point
Copy the full SHA 0904e44View commit details -
Configuration menu - View commit details
-
Copy full SHA for de66018 - Browse repository at this point
Copy the full SHA de66018View commit details -
Configuration menu - View commit details
-
Copy full SHA for d2cef5a - Browse repository at this point
Copy the full SHA d2cef5aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ef64418 - Browse repository at this point
Copy the full SHA ef64418View commit details -
Configuration menu - View commit details
-
Copy full SHA for 786334a - Browse repository at this point
Copy the full SHA 786334aView commit details -
Revert fac31ed "allow matched double quotes in link definition title …
…(markdown.pl behavior)."
Configuration menu - View commit details
-
Copy full SHA for bf9c9c5 - Browse repository at this point
Copy the full SHA bf9c9c5View commit details -
Configuration menu - View commit details
-
Copy full SHA for 821e2da - Browse repository at this point
Copy the full SHA 821e2daView commit details -
Configuration menu - View commit details
-
Copy full SHA for dc92048 - Browse repository at this point
Copy the full SHA dc92048View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3be817b - Browse repository at this point
Copy the full SHA 3be817bView commit details -
Configuration menu - View commit details
-
Copy full SHA for 6750997 - Browse repository at this point
Copy the full SHA 6750997View commit details -
Configuration menu - View commit details
-
Copy full SHA for e66f7aa - Browse repository at this point
Copy the full SHA e66f7aaView commit details -
allow backslash-escapes in link text, href, title and link definition…
… references. InlineLexer.escapes() handles markdown escapes sequences. TODO handle escapes everywhere in the document.
Configuration menu - View commit details
-
Copy full SHA for fc17a2c - Browse repository at this point
Copy the full SHA fc17a2cView commit details -
allow ONE level of matching parenthesis in links.
NON-COMPLIANT with commonmark! adjust test markedjs#468 accordingly.
Configuration menu - View commit details
-
Copy full SHA for 9f20c46 - Browse repository at this point
Copy the full SHA 9f20c46View commit details -
Configuration menu - View commit details
-
Copy full SHA for d8ff951 - Browse repository at this point
Copy the full SHA d8ff951View commit details -
let html entities in link URIs pass through as-is (we cannot decode t…
…hem all). This is not required by commonmark, browsers will do just fine.
Configuration menu - View commit details
-
Copy full SHA for 277d093 - Browse repository at this point
Copy the full SHA 277d093View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3afc360 - Browse repository at this point
Copy the full SHA 3afc360View commit details -
remove commonmark test markedjs#478 because we treat U+00A0 (non-brea…
…king space) as a regular space. FIXME
Configuration menu - View commit details
-
Copy full SHA for 29d33d9 - Browse repository at this point
Copy the full SHA 29d33d9View commit details -
[security] fix possible ReDOS vulnerable regex rule by refactoring (d…
…oesn't change the alphabet)
Configuration menu - View commit details
-
Copy full SHA for 271d357 - Browse repository at this point
Copy the full SHA 271d357View commit details -
Configuration menu - View commit details
-
Copy full SHA for 47365c1 - Browse repository at this point
Copy the full SHA 47365c1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8877ff7 - Browse repository at this point
Copy the full SHA 8877ff7View commit details -
allow ONE level of matching parenthesis in link text.
NON-COMPLIANT with commonmark! Adjust test markedjs#483 accordingly
Configuration menu - View commit details
-
Copy full SHA for ca349c8 - Browse repository at this point
Copy the full SHA ca349c8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5125739 - Browse repository at this point
Copy the full SHA 5125739View commit details
Commits on Mar 6, 2018
-
[commonmark] BREAKING CHANGE: link nesting is not allowed. If multipl…
…e links are nested, the innermost one is used.
Configuration menu - View commit details
-
Copy full SHA for eb95a71 - Browse repository at this point
Copy the full SHA eb95a71View commit details -
Configuration menu - View commit details
-
Copy full SHA for 13dd38a - Browse repository at this point
Copy the full SHA 13dd38aView commit details -
Configuration menu - View commit details
-
Copy full SHA for ef3516c - Browse repository at this point
Copy the full SHA ef3516cView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5b135c3 - Browse repository at this point
Copy the full SHA 5b135c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 55f47f1 - Browse repository at this point
Copy the full SHA 55f47f1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 7a80cdf - Browse repository at this point
Copy the full SHA 7a80cdfView commit details -
Revert eb95a71 "[commonmark] BREAKING CHANGE: link nesting is not all…
…owed. If multiple links are nested, the innermost one is used." I don't like the cm rule for nested links. NON-COMPLIANT with commonmark.
Configuration menu - View commit details
-
Copy full SHA for f21a4d6 - Browse repository at this point
Copy the full SHA f21a4d6View commit details -
remove commonmark tests 492, 495-497 for link precedence with other m…
…arkup. NON-COMPLIANT with commonmark
Configuration menu - View commit details
-
Copy full SHA for 2094181 - Browse repository at this point
Copy the full SHA 2094181View commit details -
allow only one level of matching brackets in reference links text.
NON-COMPLIANT with commonmark. Adjust test 499 accordingly.
Configuration menu - View commit details
-
Copy full SHA for aeca6a1 - Browse repository at this point
Copy the full SHA aeca6a1View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5536922 - Browse repository at this point
Copy the full SHA 5536922View commit details -
remove commonmark tests 505, 507-509 for link precedence with other m…
…arkup. NON-COMPLIANT with commonmark
Configuration menu - View commit details
-
Copy full SHA for e56e35a - Browse repository at this point
Copy the full SHA e56e35aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 22b06cc - Browse repository at this point
Copy the full SHA 22b06ccView commit details -
BREAKING CHANGE: space is no longer allowed between [link text] and […
…link label] in reference links. The old behavior is now available in the pedantic mode. To comply with commonmark: http://spec.commonmark.org/0.28/#example-514
Configuration menu - View commit details
-
Copy full SHA for b9394a0 - Browse repository at this point
Copy the full SHA b9394a0View commit details -
Configuration menu - View commit details
-
Copy full SHA for fc97171 - Browse repository at this point
Copy the full SHA fc97171View commit details -
Configuration menu - View commit details
-
Copy full SHA for d47dc29 - Browse repository at this point
Copy the full SHA d47dc29View commit details -
Configuration menu - View commit details
-
Copy full SHA for f584aca - Browse repository at this point
Copy the full SHA f584acaView commit details -
Configuration menu - View commit details
-
Copy full SHA for eea3932 - Browse repository at this point
Copy the full SHA eea3932View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8594a06 - Browse repository at this point
Copy the full SHA 8594a06View commit details -
Configuration menu - View commit details
-
Copy full SHA for 209dff1 - Browse repository at this point
Copy the full SHA 209dff1View commit details -
Configuration menu - View commit details
-
Copy full SHA for ea48e96 - Browse repository at this point
Copy the full SHA ea48e96View commit details -
remove commonmark test 535 (link precedence with other markup).
NON-COMPLIANT with commonmark
Configuration menu - View commit details
-
Copy full SHA for dfc5b3e - Browse repository at this point
Copy the full SHA dfc5b3eView commit details -
Configuration menu - View commit details
-
Copy full SHA for d29f68a - Browse repository at this point
Copy the full SHA d29f68aView commit details -
adjust commonmark tests 544-548, 556, 560 that contain markup inside …
…the image description. NON-COMPLIANT with commonmark (just a recommendation. This can be fixed in the future by using the InlineLexer+TextRenderer)
Configuration menu - View commit details
-
Copy full SHA for 2e23540 - Browse repository at this point
Copy the full SHA 2e23540View commit details -
Configuration menu - View commit details
-
Copy full SHA for f7d4d21 - Browse repository at this point
Copy the full SHA f7d4d21View commit details -
Configuration menu - View commit details
-
Copy full SHA for c398550 - Browse repository at this point
Copy the full SHA c398550View commit details -
Configuration menu - View commit details
-
Copy full SHA for e4fd972 - Browse repository at this point
Copy the full SHA e4fd972View commit details
Commits on Mar 8, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 680a6c3 - Browse repository at this point
Copy the full SHA 680a6c3View commit details -
Configuration menu - View commit details
-
Copy full SHA for 163a482 - Browse repository at this point
Copy the full SHA 163a482View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4e2b647 - Browse repository at this point
Copy the full SHA 4e2b647View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9cb1900 - Browse repository at this point
Copy the full SHA 9cb1900View commit details
Commits on Apr 9, 2018
-
Configuration menu - View commit details
-
Copy full SHA for b738cd6 - Browse repository at this point
Copy the full SHA b738cd6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 4aa4f02 - Browse repository at this point
Copy the full SHA 4aa4f02View commit details -
Configuration menu - View commit details
-
Copy full SHA for bc7c9db - Browse repository at this point
Copy the full SHA bc7c9dbView commit details -
Configuration menu - View commit details
-
Copy full SHA for d94a68c - Browse repository at this point
Copy the full SHA d94a68cView commit details
Commits on Apr 10, 2018
-
Configuration menu - View commit details
-
Copy full SHA for 4e52c42 - Browse repository at this point
Copy the full SHA 4e52c42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 5396950 - Browse repository at this point
Copy the full SHA 5396950View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8815ba3 - Browse repository at this point
Copy the full SHA 8815ba3View commit details -
Configuration menu - View commit details
-
Copy full SHA for a6c6f0d - Browse repository at this point
Copy the full SHA a6c6f0dView commit details