miloja / redmine_highlightjs

A redmine plugin to highlight code blocks much better than coderay!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

HighlightJS Plugin

A redmine plugin to highlight code blocks much better than coderay! :) 135 languages with autodetection feature, 65 color themes, multi language code highlight (like http+json) Try Your language and choose best theme for You: https://highlightjs.org/static/demo/

Old good coderay:

Example highlihts (monokai_sublime theme) - json, http+json:

It's very easy to use because it works automatically :) finds blocks of code, detects a language (one or more!), highlights it.

Supported languages and markups in build: 1c accesslog actionscript apache applescript armasm asciidoc aspectj autohotkey autoit avrasm axapta bash brainfuck cal capnproto ceylon clojure clojure-repl cmake coffeescript cpp crystal cs css d markdown dart delphi diff django dns dockerfile dos dust elixir elm ruby erb erlang-repl erlang fix fortran fsharp gams gcode gherkin glsl go golo gradle groovy haml handlebars haskell haxe http inform7 ini irpf90 java javascript json julia kotlin lasso less lisp livecodeserver livescript lua makefile mathematica matlab mel mercury mizar perl mojolicious monkey nginx nimrod nix nsis objectivec ocaml openscad oxygene parser3 pf php powershell processing profile prolog protobuf puppet python q r rib roboconf rsl ruleslanguage rust scala scheme scilab scss smali smalltalk sml sql stata step21 stylus swift tcl tex thrift tp twig typescript vala vbnet vbscript vbscript-html verilog vhdl vim x86asm xml xl xquery zephir

Install

  1. Follow the Redmine plugin installation steps at: http://www.redmine.org/wiki/redmine/Plugins
  2. Make sure the plugin installation directory name is redmine_highlightjs
  3. Restart the server (this will ensure that the CSS file and other assets are copied to the right place)
  4. (optional) Configure color theme in Administration -> Plugins -> HighlightJS

Browser Restrictions

Plugin is restricted to work with following browsers (or newer):

  Browser.new('Safari', '2'),
  Browser.new('Firefox', '3'),
  Browser.new('Chrome', '10'),
  Browser.new('Internet Explorer', '9')

If You find out that there are some problems with Your browser then report bug in github, so we can turn it off for selected software. Some people still using old browsers like IE8, when others are up to date. IE8 is unsupported by main lib so there is nothing better than turning on coderay again.

Usage

This plugin will replace existing Coderay highlights, You can specify target language like usual:

<pre><code class="json">
[
      {
        "title": "apples",
        "count": [12000, 20000],
        "description": {"text": "...", "sensitive": false}
      },
      {
        "title": "oranges",
        "count": [17500, null],
        "description": {"text": "...", "sensitive": false}
      }
]
</code></pre>

or use autodetection:

<pre><code>
[
  {
    "title": "apples",
    "count": [12000, 20000],
    "description": {"text": "...", "sensitive": false}
  },
  {
    "title": "oranges",
    "count": [17500, null],
    "description": {"text": "...", "sensitive": false}
  }
]
</code></pre>

Autodetection works great with more than one language on the board, like http with appliction/json body:

<pre><code>
POST /task?id=1 HTTP/1.1
Host: example.org
Content-Type: application/json; charset=utf-8
Content-Length: 19

{"status": "ok", "extended": true}
</code></pre>

To disable highlighting altogether use the nohighlight class:

<pre><code class="nohighlight">...</code></pre>

Plugin additionaly trims white lines from start and end so

<pre><code>{"status": "ok", "extended": true}</code></pre>

is equal to:

<pre><code>
{"status": "ok", "extended": true}
</code></pre>

Build Your own HighlightJS version

If You need subset of supported languages follow instruction on highlightJS site: http://highlightjs.readthedocs.org/en/latest/building-testing.html Just replace redmine_highlightjs/assets/javascript/highlight.pack.min.js with Your build

For Your new language definition follow instructions here: http://highlightjs.readthedocs.org/en/latest/language-guide.html

FAQ:

Line numbers?

No, that probably never happens! http://highlightjs.readthedocs.org/en/latest/line-numbers.html

This plugin removes line numbers from file-view too in order to get one block to highlight.

License

This plugin is licensed under the GNU GPL v2. See COPYRIGHT.txt and GPL.txt for details.

Plugin author

(c) Dominik Chmaj - http://www.dominik.net.pl

Project help, bugs

If you need help you can contact the maintainers on the project page on GitHub (https://github.com/dominch/redmine_highlightjs). If you want to report bugs, please open a new issue here: https://github.com/dominch/redmine_highlightjs/issues

About

A redmine plugin to highlight code blocks much better than coderay!

License:Other


Languages

Language:CSS 91.1%Language:Ruby 6.2%Language:JavaScript 1.4%Language:HTML 1.3%