diff --git a/README.md b/README.md
index 631c708..5e4b5a3 100644
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-###TextDrawable
+### TextDrawable
This light-weight library provides images with letter/text like the Gmail app. It extends the `Drawable` class thus can be used with existing/custom/network `ImageView` classes. Also included is a [fluent interface](http://en.wikipedia.org/wiki/Fluent_interface) for creating drawables and a customizable `ColorGenerator`.
-###How to use
+### How to use
#### Import with Gradle:
@@ -21,7 +21,7 @@ dependencies {
}
```
-####1. Create simple tile:
+#### 1. Create simple tile:
@@ -40,7 +40,7 @@ ImageView image = (ImageView) findViewById(R.id.image_view);
image.setImageDrawable(drawable);
```
-####2. Create rounded corner or circular tiles:
+#### 2. Create rounded corner or circular tiles:
@@ -53,7 +53,7 @@ TextDrawable drawable2 = TextDrawable.builder()
.buildRound("A", Color.RED);
```
-####3. Add border:
+#### 3. Add border:
@@ -66,7 +66,7 @@ TextDrawable drawable = TextDrawable.builder()
.buildRoundRect("A", Color.RED, 10);
```
-####4. Modify font style:
+#### 4. Modify font style:
```java
TextDrawable drawable = TextDrawable.builder()
@@ -80,7 +80,7 @@ TextDrawable drawable = TextDrawable.builder()
.buildRect("a", Color.RED)
```
-####5. Built-in color generator:
+#### 5. Built-in color generator:
```java
ColorGenerator generator = ColorGenerator.MATERIAL; // or use DEFAULT
@@ -101,7 +101,7 @@ TextDrawable ic1 = builder.build("A", color1);
TextDrawable ic2 = builder.build("B", color2);
```
-####6. Specify the width / height:
+#### 6. Specify the width / height:
```xml