Added some highlighting to the readme.
diff --git a/README.md b/README.md
index 87d19d9..957db17 100644
--- a/README.md
+++ b/README.md
@@ -3,8 +3,8 @@
 
 Jclouds CLI provides two types of command line interface:
 
-1) An interactive shell.
-2) A shell script.
+* An interactive shell.
+* A shell script.
 
 Installation
 -----------
@@ -19,22 +19,27 @@
 Using the script
 ----------------
 To use the scirpt:
-./bin/jclouds [category] [action] [options] [arguments].
+./bin/jclouds **[category]** **[action]** **[options]** **[arguments]**.
 
-Categories: node, group, image, location, hardware.
-Actions: list, create, destroy, runscript.
-Options: --provider, --identity, --credential --endpoint etc.
+* *Categories*: node, group, image, location, hardware.
+* *Actions*: list, create, destroy, runscript.
+* *Options*: --provider, --identity, --credential --endpoint etc.
 
 Some examples:
 To create 10 nodes on EC2 under group: myGroupName using Ubuntu 10.04
+<pre>
 ./jclouds node create --provider aws-ec2 --identity [identity] --credential [credential] --os-family ubuntu --os-version 10.04 --adminAcess myGroupName 10
+</pre>
 
 To list all nodes:
+<pre>
 ./jclouds node list --provider aws-ec2 --identity [identity] --credential [credential]
+</pre>
 
 To destroy a node:
+<pre>
 ./jclouds node destroy [node id]
-
+</pre>