13 lines
340 B
Markdown
13 lines
340 B
Markdown
---
|
|
layout: post
|
|
title: Code Snippets
|
|
---
|
|
|
|
Whenever you need to post a code snippet, use the liquid tags `hilight` and `endhilight` like this:
|
|
|
|
```
|
|
# some code goes here
|
|
puts "Hello World!"
|
|
```
|
|
|
|
Note that this only provides color-coding. For that you might need to use a front end colorization engine like Highlight.JS or something similar. |