]> git.madduck.net Git - etc/vim.git/blobdiff - test/syntax.md

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Merge pull request #433 from nstickney/master
[etc/vim.git] / test / syntax.md
index 8a7421db6207ea02351a306e17f8d0f1036cb12b..33f5500e88716e4e6d7afac4232ca19817e9c5f3 100644 (file)
-# Original markdown
+# Fenced code living in an indented environment is correctly highlighted
 
-This section covers only features from the [original markdown](daringfireball.net/projects/markdown/syntax), in the same order that they are defined on the specification.
+1. run this command to do this:
 
-Extensions will be tested on a separate section.
+    ```
+some command
+    ```
 
-## Paragraphs
+2. Subsequent list items are correctly highlighted.
 
-Paragraph.
-
-Line  
-break.
-
-## Headers
-
-The following should be highlighted as headers:
-
-# h1
-
- # h1
-
-# h1 #
-
-h1
-==
-
-## h2
-
-## h2 ##
-
-h2
---
-
-### h3
-
-#### h4
-
-##### h5
-
-###### h6
-
-The following is unspecified by Markdown and may not highlight properly:
-
-####### h7
-
-## Blockquotes
-
-> Block quote
-
-> First line only
-block quote
-
-> Block quote
-> > Block quote level 2
-
-> # Markdown inside block quote
->
-> [Link text](link-url)
-
-## Lists
-
-Only the list marker should be highlighted:
-
-* 0
-* 1
-
-+ 0
-+ 1
+Fenced code block with language:
 
-- 0
-- 1
+```ruby
+def f
+  0
+end
+```
 
-1. 0
-2. 1
+# Links
 
-*Not* lists:
+[a](b "c")
 
-1 0
+[a]()
 
- - 0
+[good spell](a)
 
-## Links
+[badd spell](a)
 
-[Link text](link-url)
+[a](b "c")
 
-Reference style link: [Link text][reference]
+[a]( b
+"c" )
 
-With space: [Link text] [reference]
+a (`a`) b. Fix: <https://github.com/plasticboy/vim-markdown/issues/113>
 
-[reference]: address
-[reference2]: address "Optional Title"
+Escaped:
 
-## Code blocks
+\[a](b)
 
-Inline: `inline code`
+[a\]b](c)
 
-Indented:
+## Known failures
 
-    indented code block
+Escape does not work:
 
-    # not a header
+[a\](b)
 
-    - not a list
+Should not be links because of whitespace:
 
-Indented code block and lists:
+[a] (b)
 
-- 0
+[a](a
+b)
 
-    Paragraph.
+[a](a b)
 
-        indented code block inside list
+# Reference links
 
-- 0
+Single links:
 
-    - 1
+[a][b]
 
-        Paragraph (TODO FAIL).
+[good spell][a]
 
-            indented code block inside list
+[badd spell][a]
 
-## Emphasis
+[a][]
 
-The following should be italicized:
+[a] []
 
-*single asterisks*
+[a][b] c [d][e]
 
-_single underscores_
+Reference link followed by inline link:
 
-The following should be boldface:
+[a] [b](c)
 
-**double asterisks**
+## Known failures
 
-__double underscores__
+Should be shortcut reference links:
 
-# Extensions
+[a]
 
-Fenced code blocks TODO add option to turn ON/OFF:
+[a] b [c]
 
-```
-fenced code block
-```
+Should be a single link:
 
-Fenced code block with language:
+[a] [b]
 
-```ruby
-def f
-  0
-end
-```
+[a] b [c](d)