1
0
mirror of https://github.com/scopatz/nanorc synced 2024-09-21 05:56:00 +02:00
nanorc/jade.nanorc
Andrea Dejan Grande f6f67e5b4d Create jade.nanorc
2019-04-27 23:20:08 +02:00

20 lines
453 B
Plaintext

syntax "Jade" "\.jade$"
# 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)(.*)"