diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-27 15:01:15 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-27 15:01:15 -0700 |
commit | ea51b30b3576171e7e2cdb3c26481fac155b3f51 (patch) | |
tree | 5a03c49399886571db60b4b761e7e09d3e564455 | |
parent | 35997dc0b6e7f3f076f5f8811787d3b64266b626 (diff) |
spec: added another example of unclarity in Markdown syntax description.
-rw-r--r-- | spec.txt | 16 |
1 files changed, 12 insertions, 4 deletions
@@ -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 |