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

https://github.com/highlightjs/highlightjs-c3

C3 - a language grammar for highlight.js
https://github.com/highlightjs/highlightjs-c3

Last synced: 6 months ago
JSON representation

C3 - a language grammar for highlight.js

Awesome Lists containing this project

README

        

# The C3 Programming Language for highlight.js

## Usage

### Static website or simple usage

Load the module after loading highlight.js. You'll use the minified version found in the `dist` directory. This module is just a CDN build of the language, so it will register itself as the Javascript is loaded.

```html

hljs.highlightAll();



import std::io;

fn void main()
{
io::printfn("hello, world");
}