diff --git a/haml.html.markdown b/haml.html.markdown
index 86d9ba81..aed3dcae 100644
--- a/haml.html.markdown
+++ b/haml.html.markdown
@@ -1,26 +1,36 @@
---
language: haml
-filename: learnhaml.html.haml
+filename: learnhaml.haml
contributors:
- ["Simon Neveu", "https://github.com/sneveu"]
---
-Haml is a markup language predominantly used with Ruby that cleanly
-and simply describes the HTML of any web document without the use of
-inline code. It is a popular alternative to using rails templating
-language (.erb) and allows you to embed ruby code into your markup.
+Haml is a markup language predominantly used with Ruby that cleanly and simply describes the HTML of any web document without the use of inline code. It is a popular alternative to using Rails templating language (.erb) and allows you to embed Ruby code into your markup.
-It aims to reduce repetition in your markup by closing tags for you
-based on the structure of the indents in your code. The result is
-markup that is well-structured, DRY, logical, and easier to read.
+It aims to reduce repetition in your markup by closing tags for you based on the structure of the indents in your code. The result is markup that is well-structured, DRY, logical, and easier to read.
+
+You can also use Haml on a project independent of Ruby, by installing the Haml gem on your machine and using the command line to convert it to html.
+
+$ haml input_file.haml output_file.html
```haml
+/ -------------------------------------------
+/ Indenting
+/ -------------------------------------------
+
+/
+ Because of the importance indentation has on how your code is rendered, the
+ indents should be consistent throughout the document. Any differences in
+ indentation will throw an error. It's common-practice to use two spaces,
+ but it's really up to you, as long as they're constant.
+
+
/ -------------------------------------------
/ Comments
/ -------------------------------------------
-/ This is what a comment looks like haml.
+/ This is what a comment looks like in Haml.
/
To write a multi line comment, indent your commented code to be
@@ -45,7 +55,7 @@ markup that is well-structured, DRY, logical, and easier to read.