diff --git a/README.md b/README.md
index 93b6dc7..5a54896 100644
--- a/README.md
+++ b/README.md
@@ -21,11 +21,13 @@ compilers instead of DMD. To install, simply place the generated binary (in the
# Usage
The following examples assume that we are analyzing a simple file called helloworld.d
- import std.stdio;
- void main(string[] args)
- {
- writeln("Hello World");
- }
+```d
+import std.stdio;
+void main(string[] args)
+{
+ writeln("Hello World");
+}
+```
### Token Count
The "--tokenCount" or "-t" option prints the number of tokens in the given file
@@ -214,83 +216,88 @@ If a `dscanner.ini` file is locate in the working directory or any of it's paren
The "--ast" or "--xml" options will dump the complete abstract syntax tree of
the given source file to standard output in XML format.
- $ dscanner --ast helloworld.d
-
-
-
-
-
- std
- stdio
-
-
-
-
-
-
- main
-
-
- void
-
-
-
-
- args
-
-
-
-
-
- string
-
-
-
-
-
-
- args
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- writeln
-
-
-
-
-
-
-
- Hello World
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+```sh
+$ dscanner --ast helloworld.d
+```
+
+```xml
+
+
+
+
+
+std
+stdio
+
+
+
+
+
+
+main
+
+
+void
+
+
+
+
+args
+
+
+
+
+
+string
+
+
+
+
+
+
+args
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+writeln
+
+
+
+
+
+
+
+Hello World
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
For more readable output, pipe the command through [xmllint](http://xmlsoft.org/xmllint.html)
using its formatting switch.