website/ianonavy/_drafts/code-snippets.md
Ian Adam Naval c6fb7380c3 Add drafts
2015-05-27 21:05:15 -07:00

16 lines
418 B
Markdown

---
layout: post
title: Code Snippets
date: 2015-05-27 20:58:27
category: test
---
Whenever you need to post a code snippet, use the liquid tags `highlight` and `endhighlight` like this:
{% highlight ruby %}
# some code goes here
puts "Hello World!"
{% endhighlight %}
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.