mirror of
https://github.com/scopatz/nanorc.git
synced 2024-10-18 02:06:40 -07:00
21 lines
494 B
Text
21 lines
494 B
Text
syntax "Jade" "\.jade$"
|
|
# Elements
|
|
color yellow "^\s*([a-z0-9]+)"
|
|
# Main elements
|
|
color red "^\s*(html|head|body)"
|
|
# Includes
|
|
color magenta "^\s*(include)"
|
|
# Parenthesis content
|
|
color blue "\((.*?)\)"
|
|
# Strings
|
|
color cyan "('[^']*')|(\"[^\"]*\")"
|
|
# Parenthesis, commas, equals
|
|
icolor green "\(" "\)" "\," "\="
|
|
# Comments and spaces
|
|
color blue "//.*"
|
|
color blue start="/\*" end="\*/"
|
|
color ,green "[[:space:]]+$"
|
|
# Pipes
|
|
color yellow,magenta "\|"
|
|
# Doctype
|
|
color brightblack "^\s*(doctype)(.*)"
|