mirror of
https://github.com/getzola/zola
synced 2025-01-24 17:45:03 +00:00
23064f57c8
Related to #419 Gruvbox tmTheme added to test_site, it is taken from https://github.com/Colorsublime/Colorsublime-Themes (MIT licensed)
23 lines
235 B
Markdown
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)
|
|
}
|
|
```
|