Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/thomasjo/highlight

A relatively simple and extensible syntax highlighter written in C#
https://github.com/thomasjo/highlight

c-sharp dotnet extensible syntax-highlighting

Last synced: about 2 hours ago
JSON representation

A relatively simple and extensible syntax highlighter written in C#

Awesome Lists containing this project

README

        

# Highlight
A relatively simple and extensible syntax highlighter written in C#.

## TL;DR
```powershell
Install-Package Highlight
```

```csharp
var highlighter = new Highlighter(new HtmlEngine());
var highlightedCode = highlighter.Highlight("C#", csharpCode);
```

## Syntax definitions
The following is a list of all the definition names of syntaxes/languages that are supported out of the box;

- ASPX
- C
- C++
- C#
- COBOL
- Eiffel
- Fortran
- Haskell
- HTML
- Java
- JavaScript
- Mercury
- MSIL
- Pascal
- Perl
- PHP
- Python
- Ruby
- SQL
- Visual Basic
- VBScript
- VB.NET
- XML

## Output engines
Highlight supports the notion of an output engine which makes it possible to get the syntax highlighted result output in any format. Out of the box Highlight support HTML, XML and RTF output formats.

The HtmlEngine supports inline styles which can be enabled by setting the **UseCss** property to **true**;

```csharp
var highlighter = new Highlighter(new HtmlEngine { UseCss = true });
var highlightedCode = highlighter.Highlight("C#", csharpCode);
```