summaryrefslogtreecommitdiff
path: root/spec.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-10-26 00:26:38 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-10-26 00:26:38 -0700
commit15422f68253bd5d877f0b308b1bf6caec6e0eb79 (patch)
tree400f25cc5753c0fd538da6bdae2c45d3d4691c50 /spec.txt
parent198d93379594ef80081f2cbd0e6e792cec683f2e (diff)
Tweaked the closing fence section added in last commit.
Diffstat (limited to 'spec.txt')
-rw-r--r--spec.txt46
1 files changed, 15 insertions, 31 deletions
diff --git a/spec.txt b/spec.txt
index c226866..e5953bd 100644
--- a/spec.txt
+++ b/spec.txt
@@ -1288,45 +1288,41 @@ aaa
</code></pre>
.
-Closing fences may be indented by 0-3 spaces:
+Four spaces indentation produces an indented code block:
.
-```
-code
-```
-.
-<pre><code>code
-</code></pre>
-.
-
+ ```
+ aaa
+ ```
.
+<pre><code>```
+aaa
```
-code
- ```
-.
-<pre><code>code
</code></pre>
.
+Closing fences may be indented by 0-3 spaces, and their indentation
+need not match that of the opening fence:
+
.
```
-code
+aaa
```
.
-<pre><code>code
+<pre><code>aaa
</code></pre>
.
.
-```
-code
```
+aaa
+ ```
.
-<pre><code>code
+<pre><code>aaa
</code></pre>
.
-But not by 4:
+This is not a closing fence, because it is indented 4 spaces:
.
```
@@ -1338,18 +1334,6 @@ aaa
</code></pre>
.
-Four spaces indentation produces an indented code block:
-
-.
- ```
- aaa
- ```
-.
-<pre><code>```
-aaa
-```
-</code></pre>
-.
Code fences (opening and closing) cannot contain internal spaces: