1 |
524
|
Ruebenwurz
|
/*
|
2 |
|
|
* CodePress regular expressions for Perl syntax highlighting
|
3 |
|
|
* By J. Nick Koston
|
4 |
|
|
*/
|
5 |
|
|
|
6 |
|
|
// Perl
|
7 |
|
|
Language.syntax = [
|
8 |
|
|
{ input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
|
9 |
|
|
{ input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
|
10 |
|
|
{ input : /([\$\@\%][\w\.]*)/g, output : '<a>$1</a>' }, // vars
|
11 |
|
|
{ input : /(sub\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions
|
12 |
|
|
{ input : /\b(abs|accept|alarm|atan2|bind|binmode|bless|caller|chdir|chmod|chomp|chop|chown|chr|chroot|close|closedir|connect|continue|cos|crypt|dbmclose|dbmopen|defined|delete|die|do|dump|each|else|elsif|endgrent|endhostent|endnetent|endprotoent|endpwent|eof|eval|exec|exists|exit|fcntl|fileno|find|flock|for|foreach|fork|format|formlinegetc|getgrent|getgrgid|getgrnam|gethostbyaddr|gethostbyname|gethostent|getlogin|getnetbyaddr|getnetbyname|getnetent|getpeername|getpgrp|getppid|getpriority|getprotobyname|getprotobynumber|getprotoent|getpwent|getpwnam|getpwuid|getservbyaddr|getservbyname|getservbyport|getservent|getsockname|getsockopt|glob|gmtime|goto|grep|hex|hostname|if|import|index|int|ioctl|join|keys|kill|last|lc|lcfirst|length|link|listen|LoadExternals|local|localtime|log|lstat|map|mkdir|msgctl|msgget|msgrcv|msgsnd|my|next|no|oct|open|opendir|ordpack|package|pipe|pop|pos|print|printf|push|pwd|qq|quotemeta|qw|rand|read|readdir|readlink|recv|redo|ref|rename|require|reset|return|reverse|rewinddir|rindex|rmdir|scalar|seek|seekdir|select|semctl|semget|semop|send|setgrent|sethostent|setnetent|setpgrp|setpriority|setprotoent|setpwent|setservent|setsockopt|shift|shmctl|shmget|shmread|shmwrite|shutdown|sin|sleep|socket|socketpair|sort|splice|split|sprintf|sqrt|srand|stat|stty|study|sub|substr|symlink|syscall|sysopen|sysread|system|syswritetell|telldir|tie|tied|time|times|tr|truncate|uc|ucfirst|umask|undef|unless|unlink|until|unpack|unshift|untie|use|utime|values|vec|waitpid|wantarray|warn|while|write)\b/g, output : '<b>$1</b>' }, // reserved words
|
13 |
|
|
{ input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars
|
14 |
|
|
{ input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments
|
15 |
|
|
]
|
16 |
|
|
|
17 |
|
|
Language.snippets = []
|
18 |
|
|
|
19 |
|
|
Language.complete = [
|
20 |
|
|
{ input : '\'',output : '\'$0\'' },
|
21 |
|
|
{ input : '"', output : '"$0"' },
|
22 |
|
|
{ input : '(', output : '\($0\)' },
|
23 |
|
|
{ input : '[', output : '\[$0\]' },
|
24 |
|
|
{ input : '{', output : '{\n\t$0\n}' }
|
25 |
|
|
]
|
26 |
|
|
|
27 |
|
|
Language.shortcuts = []
|