summaryrefslogtreecommitdiff
path: root/spec.txt
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-27 15:01:15 -0700
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-27 15:01:15 -0700
commitea51b30b3576171e7e2cdb3c26481fac155b3f51 (patch)
tree5a03c49399886571db60b4b761e7e09d3e564455 /spec.txt
parent35997dc0b6e7f3f076f5f8811787d3b64266b626 (diff)
spec: added another example of unclarity in Markdown syntax description.
Diffstat (limited to 'spec.txt')
-rw-r--r--spec.txt16
1 files changed, 12 insertions, 4 deletions
diff --git a/spec.txt b/spec.txt
index cb42bc3..c83ee56 100644
--- a/spec.txt
+++ b/spec.txt
@@ -128,14 +128,22 @@ questions it does not answer:
- and it can screw things up`
```
-11. Can list items include headers? (`Markdown.pl` does not allow this,
- but headers can occur in blockquotes.)
+11. Can list items include section headers? (`Markdown.pl` does not
+ allow this, but does allow blockquotes to include headers.)
``` markdown
- # Heading
```
-12. Can link references be defined inside block quotes or list items?
+12. Can list items be empty?
+
+ ``` markdown
+ * a
+ *
+ * b
+ ```
+
+13. Can link references be defined inside block quotes or list items?
``` markdown
> Blockquote [foo].
@@ -143,7 +151,7 @@ questions it does not answer:
> [foo]: /url
```
-13. If there are multiple definitions for the same reference, which takes
+14. If there are multiple definitions for the same reference, which takes
precedence?
``` markdown