aboutsummaryrefslogtreecommitdiff
path: root/spec.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2018-10-04 15:39:32 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2018-10-04 15:39:32 -0700
commitb7651e4f8b9bdcccd38e7895997360dc11489527 (patch)
tree4be924bc80f614860f4c6380f85ad0e2a50cfa9d /spec.txt
parent5dc2aed09a070c215d62f69998f9edd428eec2e6 (diff)
Clarify tlides and backticks in info strings.
We disallow backticks in info strings after backtick fences only. Both backticks and tildes are allowed in info strings after tilde fences. Added example. Closes #119.
Diffstat (limited to 'spec.txt')
-rw-r--r--spec.txt16
1 files changed, 14 insertions, 2 deletions
diff --git a/spec.txt b/spec.txt
index bd2affb..d24a923 100644
--- a/spec.txt
+++ b/spec.txt
@@ -1584,8 +1584,8 @@ begins with a code fence, indented no more than three spaces.
The line with the opening code fence may optionally contain some text
following the code fence; this is trimmed of leading and trailing
-whitespace and called the [info string](@).
-The [info string] may not contain any backtick
+whitespace and called the [info string](@). If the [info string] comes
+after a backtick fence, it may not contain any backtick
characters. (The reason for this restriction is that otherwise
some inline code would be incorrectly interpreted as the
beginning of a fenced code block.)
@@ -1973,6 +1973,18 @@ foo</p>
````````````````````````````````
+[Info strings] for tilde code blocks can contain backticks and tildes:
+
+```````````````````````````````` example
+~~~ aa ``` ~~~
+foo
+~~~
+.
+<pre><code class="language-aa">foo
+</code></pre>
+````````````````````````````````
+
+
Closing code fences cannot have [info strings]:
```````````````````````````````` example