| [ Index ] |
PHP Cross Reference of Wordpress 2.9.1 |
[Summary view] [Print] [Text view]
1 /* 2 * CodePress regular expressions for Java syntax highlighting 3 */ 4 5 // Java 6 Language.syntax = [ 7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>'}, // strings double quote 8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>'}, // strings single quote 9 { input : /\b(abstract|continue|for|new|switch|assert|default|goto|package|synchronized|boolean|do|if|private|this|break|double|implements|protected|throw|byte|else|import|public|throws|case|enum|instanceof|return|transient|catch|extends|int|short|try|char|final|interface|static|void|class|finally|long|strictfp|volatile|const|float|native|super|while)\b/g, output : '<b>$1</b>'}, // reserved words 10 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3'}, // comments // 11 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' }// comments /* */ 12 ] 13 14 Language.snippets = [] 15 16 Language.complete = [ 17 { input : '\'',output : '\'$0\'' }, 18 { input : '"', output : '"$0"' }, 19 { input : '(', output : '\($0\)' }, 20 { input : '[', output : '\[$0\]' }, 21 { input : '{', output : '{\n\t$0\n}' } 22 ] 23 24 Language.shortcuts = []
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Fri Jan 8 00:19:48 2010 | Cross-referenced by PHPXref 0.7 |