Changeset View
Changeset View
Standalone View
Standalone View
conf/default.conf.php
| Show First 20 Lines • Show All 986 Lines • ▼ Show 20 Lines | // -- Syntax Highlighting --------------------------------------------------- // | ||||
| // In places that we display a dropdown to syntax-highlight code, | // In places that we display a dropdown to syntax-highlight code, | ||||
| // this is where that list is defined. | // this is where that list is defined. | ||||
| // Syntax is 'lexer-name' => 'Display Name', | // Syntax is 'lexer-name' => 'Display Name', | ||||
| 'pygments.dropdown-choices' => array( | 'pygments.dropdown-choices' => array( | ||||
| 'apacheconf' => 'Apache Configuration', | 'apacheconf' => 'Apache Configuration', | ||||
| 'bash' => 'Bash Scripting', | 'bash' => 'Bash Scripting', | ||||
| 'brainfuck' => 'Brainf*ck', | 'brainfuck' => 'Brainf*ck', | ||||
| 'c' => 'C', | 'c' => 'C', | ||||
| 'coffee-script' => 'CoffeeScript', | |||||
| 'cpp' => 'C++', | 'cpp' => 'C++', | ||||
| 'css' => 'CSS', | 'css' => 'CSS', | ||||
| 'd' => 'D', | 'd' => 'D', | ||||
| 'diff' => 'Diff', | 'diff' => 'Diff', | ||||
| 'django' => 'Django Templating', | 'django' => 'Django Templating', | ||||
| 'erb' => 'Embedded Ruby/ERB', | 'erb' => 'Embedded Ruby/ERB', | ||||
| 'erlang' => 'Erlang', | 'erlang' => 'Erlang', | ||||
| 'go' => 'Golang', | |||||
| 'groovy' => 'Groovy', | |||||
| 'haskell' => 'Haskell', | 'haskell' => 'Haskell', | ||||
| 'html' => 'HTML', | 'html' => 'HTML', | ||||
| 'java' => 'Java', | 'java' => 'Java', | ||||
| 'js' => 'Javascript', | 'js' => 'Javascript', | ||||
| 'json' => 'JSON', | |||||
| 'mysql' => 'MySQL', | 'mysql' => 'MySQL', | ||||
| 'objc' => 'Objective-C', | 'objc' => 'Objective-C', | ||||
| 'perl' => 'Perl', | 'perl' => 'Perl', | ||||
| 'php' => 'PHP', | 'php' => 'PHP', | ||||
| 'puppet' => 'Puppet', | |||||
| 'rest' => 'reStructuredText', | 'rest' => 'reStructuredText', | ||||
| 'text' => 'Plain Text', | 'text' => 'Plain Text', | ||||
| 'python' => 'Python', | 'python' => 'Python', | ||||
| 'rainbow' => 'Rainbow', | 'rainbow' => 'Rainbow', | ||||
| 'remarkup' => 'Remarkup', | 'remarkup' => 'Remarkup', | ||||
| 'ruby' => 'Ruby', | 'ruby' => 'Ruby', | ||||
| 'xml' => 'XML', | 'xml' => 'XML', | ||||
| 'yaml' => 'YAML', | |||||
| ), | ), | ||||
| // This is an override list of regular expressions which allows you to choose | // This is an override list of regular expressions which allows you to choose | ||||
| // what language files are highlighted as. If your projects have certain rules | // what language files are highlighted as. If your projects have certain rules | ||||
| // about filenames or use unusual or ambiguous language extensions, you can | // about filenames or use unusual or ambiguous language extensions, you can | ||||
| // create a mapping here. This is an ordered dictionary of regular expressions | // create a mapping here. This is an ordered dictionary of regular expressions | ||||
| // which will be tested against the filename. They should map to either an | // which will be tested against the filename. They should map to either an | ||||
| // explicit language as a string value, or a numeric index into the captured | // explicit language as a string value, or a numeric index into the captured | ||||
| ▲ Show 20 Lines • Show All 59 Lines • Show Last 20 Lines | |||||