mirror of
https://github.com/scopatz/nanorc
synced 2024-11-10 19:29:48 +01:00
20 lines
451 B
Plaintext
20 lines
451 B
Plaintext
syntax "Pug" "\.pug$"
|
|
# Elements
|
|
color yellow "^\s*([a-z0-9]+)"
|
|
# Main elements
|
|
color red "^\s*(html|head|body)"
|
|
# 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)(.*)"
|