Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib/rouge
AgeCommit message (Collapse)Author
2017-11-22Add support of MermaidVitaliy @blackst0ne Klachkov
2017-06-08remove the rouge copypasta and add notes to refactorhttp://jneen.net/
2017-03-15Document tag option and clarify specDouwe Maan
2017-03-15Copy code as GFM from diffs, blobs and GFM code blocksDouwe Maan
2017-02-03PlantUML support for MarkdownHoracio Sanson
Allow rendering of PlantUML diagrams in Markdown documents using fenced blocks: ```plantuml Bob -> Sara : Hello Sara -> Bob : Go away ``` Closes: #4048
2016-12-14Render math in Asciidoc and Markdown with KaTeX using code blocksMunken
2016-12-09Better location for math lexerMunken
2016-08-01Trim extra displayed carriage returns in diffs and files with CRLFsStan Hu
Closes #20440
2016-07-15use %(...) and %[...] in favor of %<...>http://jneen.net/
2016-07-14eliminate the final newline in <pre> blockshttp://jneen.net/
2016-07-14no longer need cgihttp://jneen.net/
2016-07-14use the new token_lines interface to format lineshttp://jneen.net/
2016-07-14kill the :cssclass optionhttp://jneen.net/
2016-07-14trim more dead codehttp://jneen.net/
2016-07-14remove the dead linenos and linenostart optionshttp://jneen.net/
and the methods that relied on them
2016-07-14kill the nowrap option in HTMLGitlab itselfhttp://jneen.net/
2016-07-14remove the unused inline_theme featurehttp://jneen.net/
2016-07-14deprecate @anchorlinenoshttp://jneen.net/
2016-07-08Enable Style/IdenticalConditionalBranches Rubocop copGrzegorz Bizon
2015-12-15Fixed Rubocop offensesGabriel Mazetto
2015-08-10Fix diff syntax highlightingStan Hu
Refactored HTML parser to avoid duplication of newline parsing. Closes #2235
2015-08-02Fix the `inline_theme` option for the Rouge formatterRobert Speicher
2015-07-31Fix multi-line syntax highlightingStan Hu
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
2015-07-29Add HTMLGitlab formatterStefan Tatschner
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!