zola/test_site/content/posts/extra_syntax.md
David 23064f57c8
Support custom syntax highlighting themes (#1499)
Related to #419

Gruvbox tmTheme added to test_site, it is taken from
https://github.com/Colorsublime/Colorsublime-Themes (MIT licensed)
2021-09-13 21:08:48 +02:00

23 lines
235 B
Markdown

+++
title = "Extra Syntax"
description = ""
date = 2018-08-14
+++
```mylang
for (int i = 0; ; i++ ) {
if (i < 10)
}
```
```
for (int i = 0; ; i++ ) {
if (i < 10)
}
```
```c
for (int i = 0; ; i++ ) {
if (i < 10)
}
```