]> git.madduck.net Git - etc/vim.git/commitdiff

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:

Added a rule that covers "Github Flavored Markdown" (GFM) code blocks
authorAlex Beal <alexlbeal@gmail.com>
Wed, 14 Mar 2012 23:02:20 +0000 (17:02 -0600)
committerAlex Beal <alexlbeal@gmail.com>
Wed, 14 Mar 2012 23:02:20 +0000 (17:02 -0600)
GFM takes three back ticks to start a code block. It can be followed with a word specifying the language. It then ends with three back ticks.
http://github.github.com/github-flavored-markdown/

syntax/mkd.vim

index c6ea381c56c49dfc2e2da3cac15eb0bf41b55b2b..51f891b18dabf17656098317e2445a859792fcc9 100644 (file)
@@ -70,6 +70,7 @@ syn match  mkdCode      /^\s*\n\(\(\s\{4,}[^ ]\|\t\+[^\t]\).*\n\)\+/
 syn match  mkdLineBreak /  \+$/
 syn region mkdCode      start=/\\\@<!`/                   end=/\\\@<!`/
 syn region mkdCode      start=/\s*``[^`]*/          end=/[^`]*``\s*/
+syn region mkdCode      start=/^```\w*\s*$/          end=/^```\s*$/
 syn region mkdBlockquote start=/^\s*>/              end=/$/                 contains=mkdLineBreak,mkdLineContinue,@Spell
 syn region mkdCode      start="<pre[^>]*>"         end="</pre>"
 syn region mkdCode      start="<code[^>]*>"        end="</code>"