summaryrefslogtreecommitdiffstats
path: root/syntax/markdown_jekyll.vim
diff options
context:
space:
mode:
authorAdam Stankiewicz <sheerun@sher.pl>2019-12-31 14:08:15 +0100
committerAdam Stankiewicz <sheerun@sher.pl>2019-12-31 14:08:15 +0100
commita60e299a3ce55b4a84a48b240d35c84e6e5a8746 (patch)
tree6d45e51ff3f7889ffc7a4499af0034806ffb7397 /syntax/markdown_jekyll.vim
parentb8a5504021e0d21310bc603855ac8107828b5759 (diff)
downloadvim-polyglot-a60e299a3ce55b4a84a48b240d35c84e6e5a8746.tar.gz
vim-polyglot-a60e299a3ce55b4a84a48b240d35c84e6e5a8746.zip
Switch back to plasticboy for markdown
Diffstat (limited to 'syntax/markdown_jekyll.vim')
-rw-r--r--syntax/markdown_jekyll.vim34
1 files changed, 0 insertions, 34 deletions
diff --git a/syntax/markdown_jekyll.vim b/syntax/markdown_jekyll.vim
deleted file mode 100644
index 68bf549b..00000000
--- a/syntax/markdown_jekyll.vim
+++ /dev/null
@@ -1,34 +0,0 @@
-if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'markdown') == -1
-
-let b:markdown_in_jekyll=0
-
-if getline(1) =~ '^---\s*$'
- let b:markdown_in_jekyll=1
-
- syn region markdownJekyllFrontMatter matchgroup=markdownJekyllDelimiter contains=@NoSpell
- \ start="\%^---" end="^---$"
-
- syn region markdownJekyllLiquidTag matchgroup=markdownJekyllDelimiter contains=@NoSpell oneline
- \ start="{%" end="%}"
-
- syn region markdownJekyllLiquidOutputTag matchgroup=markdownJekyllDelimiter contains=@NoSpell oneline
- \ start="{{" skip=/"}}"/ end="}}"
-
- syn region markdownJekyllLiquidBlockTag matchgroup=markdownJekyllDelimiter contains=@NoSpell
- \ start="{%\s*\z(comment\|raw\|highlight\)[^%]*%}" end="{%\s*\%(no\|end\)\z1\s*%}"
-
- silent spell! nocomment
- silent spell! endcomment
- silent spell! nohighlight
- silent spell! endhighlight
- silent spell! noraw
- silent spell! endraw
-
- hi def link markdownJekyllFrontMatter NonText
- hi def link markdownJekyllLiquidTag NonText
- hi def link markdownJekyllLiquidOutputTag NonText
- hi def link markdownJekyllLiquidBlockTag NonText
- hi def link markdownJekyllDelimiter Delimiter
-endif
-
-endif