rouge
rouge copied to clipboard
A pure Ruby code highlighter that is compatible with Pygments
easier to navigate this way
**Name of the lexer** Haxe **Code sample** ```haxe package my.package; using my.package.SomeStaticExtension; class Test {} ``` **Additional context** Removing the line starting with `using` solves the issue. Unfortunately I can't...
**Name of the lexer** TOML **Code sample** A sample of the code that produces the bug. ``` # Single-folder glob in example/src/ [target.example] type = "executable" sources = [ "example/src/*.cpp"...
**Svelte** https://svelte.dev/docs#Component_format Svelte is number one in satisfaction and 4th in usage ranking among JavaScript front-end frameworks according to State of JS https://2020.stateofjs.com/en-US/technologies/front-end-frameworks/ **Implementation in other libraries** [Chroma](https://github.com/alecthomas/chroma) Svelte lexer:...
**Is your enhancement request related to a problem? Please describe.** When %{ ... %} block comments are used in a Matlab file (see description of block comments [here](https://uk.mathworks.com/matlabcentral/answers/92498-can-i-comment-a-block-of-lines-in-an-matlab-file-using-as-i-can-in-c#:~:text=Just%20type%20your%20comment%20and,use%20(CTRL%20%2B%20T).)), the rouge-ruby...
This commit adds a lexer for LDIF. There could be more hilighting on keywords like `changetype`/`add`/`replace` etc, but I decided to keep it simple as a start.
This PR includes a lexer and example files for the Dylan language. Dylan is a multi-paradigm functional and object-oriented programming language initially developed by Apple in the 90s and is...
Add a new lexer for [BitBake](https://github.com/openembedded/bitbake) recipes, appends, and classes. Bitbake recipes contain snippets of python and shell scripts so I had to use the delegation mechanism. I wasn't entirely...
This commit adds lexer for Kos scripting language. I'm creating website for the Kos scripting language at http://kos-lang.github.io which will also contain documentation and I'd like to be able to...
*The name of the language* [V](https://vlang.io/) See: https://github.com/vlang/v/blob/master/doc/docs.md **Implementation in other libraries** ```v fn main() { println('hello world') } ```