Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42 | GitLab Bot | 2020-11-19 | 1 | -1/+1 |
| | |||||
* | Revert "Merge branch '65152-selective-highlight' into 'master'"revert-d61dab91 | Patrick Bajao | 2019-08-09 | 1 | -2/+2 |
| | | | This reverts merge request !31361 | ||||
* | Support selective highlighting of lines65152-selective-highlight | Patrick Bajao | 2019-08-06 | 1 | -2/+2 |
| | | | | | | | | | | | | Instead of highlighting all lines when not all of them are needed, only highlight specific lines. The `BlobPresenter#highlight` method has been updated to support `since` and `to` params. These params will be used to limit the content to be highlighted. Modify `Gitlab::Highlight` to support `since` param which will then be used to determine the starting line number. | ||||
* | Enable even more frozen string in lib/**/*.rb | gfyoung | 2018-10-08 | 2 | -0/+4 |
| | | | | | | | | | | | | | | | | | | | | Enables frozen string for the following files: * lib/generators/**/*.rb * lib/gitaly/**/*.rb * lib/google_api/**/*.rb * lib/haml_lint/**/*.rb * lib/json_web_token/**/*.rb * lib/mattermost/**/*.rb * lib/microsoft_teams/**/*.rb * lib/object_storage/**/*.rb * lib/omni_auth/**/*.rb * lib/peek/**/*.rb * lib/rouge/**/*.rb * lib/rspec_flaky/**/*.rb * lib/system_check/**/*.rb Partially addresses #47424. | ||||
* | Resolve Naming/UncommunicativeMethod | Lin Jen-Shin | 2018-07-09 | 1 | -1/+1 |
| | |||||
* | Add CommonMark markdown enginereplace_redcarpet_with_cmark | blackst0ne | 2018-03-07 | 1 | -0/+20 |
| | |||||
* | Add support of Mermaid | Vitaliy @blackst0ne Klachkov | 2017-11-22 | 2 | -18/+0 |
| | |||||
* | remove the rouge copypasta and add notes to refactor | http://jneen.net/ | 2017-06-07 | 2 | -28/+4 |
| | |||||
* | Document tag option and clarify spec | Douwe Maan | 2017-03-14 | 1 | -4/+3 |
| | |||||
* | Copy code as GFM from diffs, blobs and GFM code blocks | Douwe Maan | 2017-03-14 | 1 | -2/+3 |
| | |||||
* | PlantUML support for Markdown | Horacio Sanson | 2017-02-03 | 1 | -0/+21 |
| | | | | | | | | | | | Allow rendering of PlantUML diagrams in Markdown documents using fenced blocks: ```plantuml Bob -> Sara : Hello Sara -> Bob : Go away ``` Closes: #4048 | ||||
* | Render math in Asciidoc and Markdown with KaTeX using code blocks | Munken | 2016-12-14 | 1 | -3/+3 |
| | |||||
* | Better location for math lexer | Munken | 2016-12-08 | 1 | -0/+21 |
| | |||||
* | Trim extra displayed carriage returns in diffs and files with CRLFs | Stan Hu | 2016-08-01 | 1 | -1/+1 |
| | | | | Closes #20440 | ||||
* | use %(...) and %[...] in favor of %<...>feature.rouge-20 | http://jneen.net/ | 2016-07-14 | 1 | -2/+2 |
| | |||||
* | eliminate the final newline in <pre> blocks | http://jneen.net/ | 2016-07-14 | 1 | -1/+5 |
| | |||||
* | no longer need cgi | http://jneen.net/ | 2016-07-14 | 1 | -2/+0 |
| | |||||
* | use the new token_lines interface to format lines | http://jneen.net/ | 2016-07-14 | 1 | -70/+11 |
| | |||||
* | kill the :cssclass option | http://jneen.net/ | 2016-07-14 | 1 | -2/+0 |
| | |||||
* | trim more dead code | http://jneen.net/ | 2016-07-14 | 1 | -18/+3 |
| | |||||
* | remove the dead linenos and linenostart options | http://jneen.net/ | 2016-07-14 | 1 | -44/+2 |
| | | | | and the methods that relied on them | ||||
* | kill the nowrap option in HTMLGitlab itself | http://jneen.net/ | 2016-07-14 | 1 | -11/+1 |
| | |||||
* | remove the unused inline_theme feature | http://jneen.net/ | 2016-07-14 | 1 | -10/+2 |
| | |||||
* | deprecate @anchorlinenos | http://jneen.net/ | 2016-07-14 | 1 | -10/+0 |
| | |||||
* | Enable Style/IdenticalConditionalBranches Rubocop cop | Grzegorz Bizon | 2016-07-08 | 1 | -10/+6 |
| | |||||
* | Fixed Rubocop offenses | Gabriel Mazetto | 2015-12-15 | 1 | -1/+1 |
| | |||||
* | Fix diff syntax highlighting | Stan Hu | 2015-08-10 | 1 | -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-theme | Robert Speicher | 2015-08-01 | 1 | -1/+1 |
| | |||||
* | Fix multi-line syntax highlighting | Stan Hu | 2015-07-30 | 1 | -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 formatter | Stefan Tatschner | 2015-07-29 | 1 | -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! |