stakx / ecma-335

Markdown version of ECMA-335: Common Language Infrastructure (CLI). Work in progress (approx. 99% complete). Collaboration welcome!
39 stars 4 forks source link

Fix some problems with parsing as github-flavored markdown #17

Closed darthwalsh closed 1 year ago

darthwalsh commented 1 year ago

(It might help to clarify in CONTRIBUTING the files are in https://github.github.com/gfm/ or some other specific markdown dialect.)

Github markdown renders a table cell with | as just the ` (see the diff of the github preview.)

Escape the | with a backslash https://stackoverflow.com/a/23734625/771768

This seems more readable that using the HTML entity with Unicode value.

Fix a couple other typos too. Some markdown parsers might be more lenient than github.com

stakx commented 1 year ago

Once again, thank you for taking the time to fix those mistakes!