--- layout: post categories: [General] introduction: "Highlight syntax in different programming languages and/or styles in blogs" --- In this theme it is possible to mark code like in every github markdown file. > Take a look in the `raw` file [here](https://raw.githubusercontent.com/0x007E/jekyll-tilde-theme/refs/heads/main/_posts/general/2025-08-17-syntax-highlighting.md) to see how it works. ### YAML ```yaml global: some_variable: true ``` ### JSON ```json { "parameter": "value" } ``` ### C ```c unsigned do_something(unsigned char x, unsigned char y) { return x + y; } ``` and many more...