summaryrefslogtreecommitdiff
path: root/lib/rouge
Commit message (Collapse)AuthorAgeFilesLines
* Enable Style/IdenticalConditionalBranches Rubocop copGrzegorz Bizon2016-07-081-10/+6
|
* Fixed Rubocop offensesGabriel Mazetto2015-12-151-1/+1
|
* Fix diff syntax highlightingStan Hu2015-08-101-20/+21
| | | | | | Refactored HTML parser to avoid duplication of newline parsing. Closes #2235
* Fix the `inline_theme` option for the Rouge formatterrs-fix-rouge-inline-themeRobert Speicher2015-08-011-1/+1
|
* Fix multi-line syntax highlightingStan Hu2015-07-301-2/+10
| | | | | | | | HTML span elements only apply to a single line, and in the case of multi-line comments, the highlighting was dropped as a result. Ensure that each line has the proper styling to fix this. Closes #1577
* Add HTMLGitlab formatterStefan Tatschner2015-07-291-0/+168
This custom formatter for rouge is needed to generate HTML output specifically for gitlab. Since its usecase is mostly suitable for gitlab it had been rejected upstream: https://github.com/jneen/rouge/pull/268 Thanks a lot to @stanhu, @jneen and @tsigo for review!