vim-markdown
vim-markdown copied to clipboard
Markdown syntax highlight for Vim editor with snippets support
Hello, I often use language named code block, like so: `````` markdown ```C int a; ``` `````` But your plugin doesn't support triple backtick. A simple way to do that...
Two little commits that add support for [fenced code blocks](http://michelf.com/projects/php-markdown/extra/#fenced-code-blocks) and also clear the error highlighting that occurs in html on unmatched angle brackets () or on an unescaped &,...
Added support for GitHub Flavored Markdown code blocks like this: ``` sh $ tar cvzf foo.tar.bz2 bar/ ```
I've been using this line to fix the one line links: ``` syn region mkdLink matchgroup=mkdDelimiter start="" oneline contains=@Spell skipwhite ``` Also, the syntax gets messy when there's code inside...
It's been done already by [cgraeser](https://github.com/cgraeser/vim-markdown/commit/d049d36988e5799b5ee112d45b7a9a3e0019fdf4). Once definition lists from PHP Markdown Extra got it, they should trigger folding too.
See https://raw.github.com/KnightSoft/kernel/master/docs/memory.md
If you put a single character in italic markdown syntax such as ``` *a* or *0* ``` the highlighting gets a little whacky.
A title like this is not fully syntax highlighted: ``` ========= My header ========= ``` The first `=========` is not highlighted.
I've been getting this problem with all the different vim markdown plugins I tried: If I type a heading, then the line below it add ==== to make it a...
Hello! Thanks for the excellent syntax file. I'm wondering what would be necessary to support [[ | ]] style links like those used by the gollum wiki (https://github.com/github/gollum/) I'll try...