2019-03-04 03:28:35 -05:00
|
|
|
if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'apiblueprint') != -1
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2017-03-23 08:21:01 -04:00
|
|
|
runtime! syntax/markdown.vim
|
|
|
|
unlet! b:current_syntax
|
|
|
|
|
|
|
|
" Metadata
|
|
|
|
syntax region apibMarkdownMetadata start=/\%^.*:.*$/ end=/^$/ contains=apibMarkdownMetadataKey,apibMarkdownMetadataValue fold
|
|
|
|
syntax match apibMarkdownMetadataKey /^[^:]*\ze:/ contained
|
|
|
|
syntax match apibMarkdownMetadataValue /:.*/ contained
|
|
|
|
|
|
|
|
syntax region apibHTTPStatusCode start=/\d\d\d/ end=// contained containedin=apibResponseSection
|
|
|
|
syntax region apibHTTPContentType start=/(.*)/ end=// contained containedin=apibResponseSection
|
|
|
|
|
|
|
|
syntax region apibModelSection start=/^+ Model/ end=/$/ oneline
|
|
|
|
syntax region apibRequestSection start=/^[-+*] Request.*/ end=/^$/ contains=apibHTTPContentType
|
|
|
|
syntax region apibResponseSection start=/^[-+*] Response \d\d\d/ end=/^$/ contains=apibHTTPStatusCode,apibHTTPContentType
|
|
|
|
syntax region apibHeadersSection start=/^+ Headers$/ end=/^\S.*$/ contains=apibHeadersSectionKey,apibHeadersSectionValue
|
|
|
|
|
|
|
|
syntax region apibActionRelationKey start=/: .*/ end=/$/ contained
|
|
|
|
syntax region apibActionRelation start=/^[-+*] Relation: .*$/ end=/$/ oneline contains=apibActionRelationKey
|
|
|
|
|
|
|
|
syntax match apibHeadersSectionKey /^[^:]*\ze:/ contained
|
|
|
|
syntax match apibHeadersSectionValue /:.*/ contained
|
|
|
|
|
|
|
|
highlight default link apibMarkdownMetadataKey Function
|
|
|
|
highlight default link apibRequestSection Function
|
|
|
|
highlight default link apibResponseSection Function
|
|
|
|
highlight default link apibModelSection Function
|
|
|
|
highlight default link apibHeadersSectionKey Function
|
|
|
|
highlight default link apibHTTPStatusCode Delimiter
|
|
|
|
highlight default link apibHTTPContentType Comment
|
|
|
|
highlight default link apibActionRelation Function
|
|
|
|
highlight default link apibActionRelationKey Identifier
|
|
|
|
|
|
|
|
let b:current_syntax = 'apiblueprint'
|
|
|
|
|