summaryrefslogtreecommitdiffstats
path: root/after/syntax/html.vim
blob: bc7e8eedd3753227c9f41d81a87ddb805f8a998e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'html5') == -1

" Vim syntax file
" Language:     HTML (version 5.1)
" Last Change:  2017 Feb 15
" License:      Public domain
"               (but let me know if you like :) )
"
" Maintainer:   Kao, Wei-Ko(othree) ( othree AT gmail DOT com )

" Comment
" https://github.com/w3c/html/issues/694
syntax region htmlComment start=+<!--+ end=+-->+ contains=@Spell
syntax region htmlComment start=+<!DOCTYPE+ keepend end=+>+

endif