diff --git a/README.md b/README.md
index 8480a29..5d5e515 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Liquid is a template engine which I wrote for very specific requirements
## What does it look like?
-
+```html
+```
## Howto use Liquid
Liquid supports a very simple API based around the Liquid::Template class.
For standard use you can just pass it the content of a file and call render with a parameters hash.
-
{% for product in products %}
-
+```ruby
@template = Liquid::Template.parse("hi {{name}}") # Parses and compiles the template
@template.render( 'name' => 'tobi' ) # => "hi tobi"
-
\ No newline at end of file
+```
\ No newline at end of file