diff --git a/README.md b/README.md
index 558111b..3f8f39d 100644
--- a/README.md
+++ b/README.md
@@ -48,20 +48,23 @@ You can download the latest build at:
Or use it as a maven dependency:
-
- redis.clients
- jedis
- 2.0.0
- jar
- compile
-
-
+```xml
+
+ redis.clients
+ jedis
+ 2.0.0
+ jar
+ compile
+
+```
To use it just:
- Jedis jedis = new Jedis("localhost");
- jedis.set("foo", "bar");
- String value = jedis.get("foo");
+```java
+Jedis jedis = new Jedis("localhost");
+jedis.set("foo", "bar");
+String value = jedis.get("foo");
+```
For more usage examples check the tests.