]>
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:
summary |
shortlog |
log |
commit | commitdiff |
tree
raw |
patch |
inline | side by side (from parent 1:
c3cf665 )
Fix #171
syn match mkdRule /^\s*\*\{3,5}$/
"HTML headings
syn match mkdRule /^\s*\*\{3,5}$/
"HTML headings
-syn region htmlH1 start="^\s*#" end="\($\|#\+\) " contains=@Spell
-syn region htmlH2 start="^\s*##" end="\($\|#\+\) " contains=@Spell
-syn region htmlH3 start="^\s*###" end="\($\|#\+\) " contains=@Spell
-syn region htmlH4 start="^\s*####" end="\($\|#\+\) " contains=@Spell
-syn region htmlH5 start="^\s*#####" end="\($\|#\+\) " contains=@Spell
-syn region htmlH6 start="^\s*######" end="\($\|#\+\) " contains=@Spell
+syn region htmlH1 start="^\s*#" end="$ " contains=@Spell
+syn region htmlH2 start="^\s*##" end="$ " contains=@Spell
+syn region htmlH3 start="^\s*###" end="$ " contains=@Spell
+syn region htmlH4 start="^\s*####" end="$ " contains=@Spell
+syn region htmlH5 start="^\s*#####" end="$ " contains=@Spell
+syn region htmlH6 start="^\s*######" end="$ " contains=@Spell
syn match htmlH1 /^.\+\n=\+$/ contains=@Spell
syn match htmlH2 /^.\+\n-\+$/ contains=@Spell
syn match htmlH1 /^.\+\n=\+$/ contains=@Spell
syn match htmlH2 /^.\+\n-\+$/ contains=@Spell
let g:vim_markdown_frontmatter=1
syn off | syn on
AssertEqual SyntaxAt(5, 1), 'mkdRule'
let g:vim_markdown_frontmatter=1
syn off | syn on
AssertEqual SyntaxAt(5, 1), 'mkdRule'
+
+# Header
+
+Given markdown;
+# #a
+ccc
+
+## #b
+ddd
+
+Execute (header title starts with #):
+ AssertEqual SyntaxOf('a'), 'htmlH1'
+ AssertEqual SyntaxOf('b'), 'htmlH2'