mirror of
https://github.com/hail2u/vim-css3-syntax.git
synced 2025-12-07 03:04:26 +08:00
Now interactive elements are omitted from HTML5 and postponed to HTML 5.1. Stay tuned. See also: http://www.w3.org/TR/2014/CR-html5-20140429/ Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
20 lines
446 B
VimL
20 lines
446 B
VimL
" HTML5 new elements
|
|
|
|
" Sections
|
|
syn keyword cssTagName article section nav aside header footer
|
|
|
|
" Grouping content
|
|
syn keyword cssTagName figure figcaption main
|
|
|
|
" Text-level semantics
|
|
syn keyword cssTagName data time mark ruby rb rt rtc rp bdi wbr
|
|
|
|
" Embedded content
|
|
syn keyword cssTagName embed video audio source track
|
|
|
|
" Forms
|
|
syn keyword cssTagName datalist keygen output progress meter
|
|
|
|
" Scripting
|
|
syn keyword cssTagName template canvas
|