mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-05 10:22:23 +01:00
6d94947a44
git-svn-id: http://svn.automattic.com/wordpress/trunk@10614 1a063a9b-81f0-0310-95a4-ce76da25c4cd
26 lines
1.1 KiB
JavaScript
26 lines
1.1 KiB
JavaScript
/*
|
|
* CodePress regular expressions for generic syntax highlighting
|
|
*/
|
|
|
|
// generic languages
|
|
Language.syntax = [
|
|
{ input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
|
|
{ input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
|
|
{ input : /\b(abstract|continue|for|new|switch|default|goto|boolean|do|if|private|this|break|double|protected|throw|byte|else|import|public|throws|case|return|catch|extends|int|short|try|char|final|interface|static|void|class|finally|long|const|float|while|function|label)\b/g, output : '<b>$1</b>' }, // reserved words
|
|
{ input : /([\(\){}])/g, output : '<em>$1</em>' }, // special chars;
|
|
{ input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments //
|
|
{ input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
|
|
]
|
|
|
|
Language.snippets = []
|
|
|
|
Language.complete = [
|
|
{ input : '\'', output : '\'$0\'' },
|
|
{ input : '"', output : '"$0"' },
|
|
{ input : '(', output : '\($0\)' },
|
|
{ input : '[', output : '\[$0\]' },
|
|
{ input : '{', output : '{\n\t$0\n}' }
|
|
]
|
|
|
|
Language.shortcuts = []
|