1
0
mirror of https://github.com/amix/vimrc synced 2025-02-28 14:12:51 +08:00
amix-vimrc-mirror/sources_non_forked/vim-markdown/test/syntax.md
2018-02-04 12:35:08 +01:00

847 B

Fenced code living in an indented environment is correctly highlighted

  1. run this command to do this:

some command ```

  1. Subsequent list items are correctly highlighted.

Fenced code block with language:

def f
  0
end

Links

a

a

good spell

badd spell

a

a

a (a) b. Fix: https://github.com/plasticboy/vim-markdown/issues/113

Escaped:

a](b)

[a\]b](c)

## Known failures

Escape does not work:

[a\](b)

Should not be links because of whitespace:

[a] (b)

[a](a
b)

[a](a b)

# Reference links

Single links:

[a][b]

[good spell][a]

[badd spell][a]

[a][]

[a] []

[a][b] c [d][e]

Reference link followed by inline link:

[a] [b](c)

## Known failures

Should be shortcut reference links:

[a]

[a] b [c]

Should be a single link:

[a] [b]

[a] b [c](d)