border: none;
}
+.lang-config .tag { color: #821; font-weight: bold } /* a markup tag name */
+
/* Highlighting style for C source code */
.lang-c .str { color: #009606 } /* string content */
.lang-c .kwd { color: #00C; font-weight: bold } /* a keyword */
.lang-c .typ { color: #808 } /* a type name */
-
+.lang-c .tag { color: #248 } /* a markup tag name */
/* Highlighting style for Lua source code */
fallthroughStylePatterns.push(
// TODO(mikesamuel): recognize non-latin letters and numerals in idents
[PR_LITERAL, /^@[a-z_$][a-z_$@0-9]*|NULL/i, null],
-
+ [PR_TAG, /^Directory|Location|VirtualHost|If|Else|ElseIf|Proxy|LoadBalancer/i, null],
[PR_TYPE, /^(?:[@_]?[A-Z]+[a-z][A-Za-z_$@0-9]*|\w+_(t|req)\b)/, null],
[PR_TAG, /^apr_[a-z_0-9]+|ap_[a-z_0-9]+/i, null],
[PR_PLAIN, /^[a-z_$][a-z_$@0-9]*/i, null],
'hashComments': true,
'cStyleComments': true,
'types': C_TYPES,
- 'functions': "apr_[a-z_]+,ap_rputs"
}), ['c', 'cc', 'cpp', 'cxx', 'cyc', 'm']);
registerLangHandler(sourceDecorator({
'keywords': 'null,true,false'