Vote #64891
完了Make syntax highlighting pluggable
0%
説明
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":http://ultraviolet.rubyforge.org/ 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":http://ultraviolet.rubyforge.org/ 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 !
journals
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.
--------------------------------------------------------------------------------
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.
--------------------------------------------------------------------------------
related_issues
relates,Closed,1651,Hack to make redmine use pygmentize instead of CodeRay
relates,Closed,3032,Use google Prettify for syntax highlighting instead of CodeRay
relates,Closed,1313,Optionally use ultraviolet for syntax highlighting