diff options
author | Jess Telford <jess+github@jes.st> | 2014-11-18 13:58:33 +1100 |
---|---|---|
committer | Jess Telford <jess+github@jes.st> | 2014-11-18 13:58:33 +1100 |
commit | e9498d9df49116972b2becd8c03a7827d56b557a (patch) | |
tree | 3633dd4a09f8d7350f53aeb7e2b71e156ff83513 | |
parent | 17b16578fd71bc8e6c9a89fb17dc622bb91e6d91 (diff) |
Fix display of triple-backtick to be cross-renderer
GitHub Flavored Markdown (where this README.md is rendered) was showing the triple tick as <code> </code>\`<code> </code>.
This fixes it to correctly display 3 backtick characters when rendered.
Tested in reference implementation, Github, and dillinger.io
-rw-r--r-- | README.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -247,7 +247,7 @@ the canonical syntax description: - The start number of an ordered list is significant. - [Fenced code blocks](http://jgm.github.io/CommonMark/spec.html#fenced-code-blocks) are supported, delimited by either - backticks (` ``` `) or tildes (` ~~~ `). + backticks (<code>\`\`\`</code>) or tildes (` ~~~ `). In all of this, I have been guided by eight years experience writing Markdown implementations in several languages, including the first |