Feature #2985
closedMake syntax highlighting pluggable
0%
Description
As discussed in #1651, actual CodeRay support in Redmine is limited, and it could be interesting to make syntax highlighting pluggable. Here is a proposal which keeps actual CodeRay behaviour by default, and allow plugins to implement syntax highlighting. See syntax_highlighting.diff
The second patch prevents Redcloth from escaping some chars when they're in a code block which will be treated by syntax highlighter. There's also a minor change to desactivate a broken (useless?) facility. It doesn't matter for coderay, but other highlighters like Ultraviolet cannot parse code with ampersands everywhere... Note this patch is necessary if you want the plugin below to work well in wikis sections (no impact on attached files). Also note the same kind of trick can easily solve #1416. See redcloth.diff
As an example, I leave a basic plugin to support Ultraviolet syntax highlighting, with active4d theme. It's quite simple, you just have to make your own module under Redmine::SyntaxHighlighting and define some methods. See ultraviolet_highlighter.zip
Any comment about all that is welcome !
Files
Related issues
Updated by Jean-Philippe Lang almost 15 years ago
- File ultraviolet_highlighter.zip ultraviolet_highlighter.zip added
- Category set to Text formatting
- Status changed from New to Closed
- Target version set to 1.0.0 (RC)
- Resolution set to Fixed
Code highlighting methods where extracted to a module in r3584. It doesn't support online configuration in application settings but it can be replaced with a plugin.
Attached a simple plugin that make use of Ultraviolet. BTW, it seems way slower than Coderay, at least for ruby highlighting.
Updated by Kornelius Kalnbach almost 15 years ago
I read on the German Ruby forum that UV was about 20 times slower that CodeRay. But they really use the TextMate bundles, which are very complex. It's still fast enough for a lot of projects (Pastie, most notably), and they support a lot more languages.
Pygments would be faster, but if you have to call it via a shell command each time you want to highlight something, it may be even slower than Ultraviolet.