Format Readme.md
diff --git a/README.md b/README.md
index 47705a5..0ca9918 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,7 @@
 [![Build Status](https://travis-ci.org/tock/libtock-rs.svg?branch=master)](https://travis-ci.org/tock/libtock-rs)
+
 # libtock-rs
+
 Rust userland library for Tock (WIP)
 
 Tested with tock [Release 1.4.1](https://github.com/tock/tock/commit/7e37bf67761d83fd585cace4fb201e2864d300b1).
@@ -22,50 +24,51 @@
 
 This project is nascent and still under heavy development, but first steps:
 
-1. Ensure you have [rustup](https://www.rustup.rs/) installed.
+1.  Ensure you have [rustup](https://www.rustup.rs/) installed.
 
-1. Clone the repository.
+1.  Clone the repository.
 
     ```bash
     git clone https://github.com/tock/libtock-rs
     cd libtock-rs
     ```
 
-1. Install `elf2tab`.
+1.  Install `elf2tab`.
 
     ```bash
     cargo install -f elf2tab --version 0.4.0
     ```
 
-1. Add dependencies for cross-compilation.
+1.  Add dependencies for cross-compilation.
 
     ```bash
     rustup target add thumbv7em-none-eabi
     ```
 
-1. Use the `run_example` script to compile and run the example app you want
-to use:
+1.  Use the `run_example` script to compile and run the example app you want
+    to use:
 
-    ```bash
-    ./run_example.sh blink
-    ```
+        ```bash
+        ./run_example.sh blink
+        ```
 
-    Due to bug #28 this will currently only work if you are using the nRF52-DK platform.
+        Due to bug #28 this will currently only work if you are using the nRF52-DK platform.
 
-    If you have a nRF52840-DK you must change `link-arg=-Tnrf52_layout.ld` in
-    `.cargo/config` to `link-arg=-Tnrf52840_layout.ld`
+        If you have a nRF52840-DK you must change `link-arg=-Tnrf52_layout.ld` in
+        `.cargo/config` to `link-arg=-Tnrf52840_layout.ld`
 
-    If you have a hail board you can flash your device as follows:
-     - set the environment variable `hail` to `1`
-     - change `link-arg=-Tnrf52_layout.ld` in `.cargo/config` to `link-arg=-Thail_layout.ld`
-     - run `run_example.sh` as above.
+        If you have a hail board you can flash your device as follows:
+         - set the environment variable `hail` to `1`
+         - change `link-arg=-Tnrf52_layout.ld` in `.cargo/config` to `link-arg=-Thail_layout.ld`
+         - run `run_example.sh` as above.
 
-    For other platforms, you may have to create your own memory layout definition.
+        For other platforms, you may have to create your own memory layout definition.
 
 ## Using libtock-rs
 
 The easiest way to start using libtock-rs is adding an example to the examples folder.
 The boiler plate code you would write is
+
 ```rust
 #![no_std]
 
@@ -76,25 +79,33 @@
   // Your code
 }
 ```
+
 If you want to use heap based allocation you will have to add
+
 ```rust
 extern crate alloc;
 ```
+
 to the preamble.
 
 To run on the code on your board you can use
+
 ```bash
 ./run_example.sh <your app>
 ```
+
 This script does the following steps for you:
- - cross-compile your program
- - create a TAB (tock application bundle)
- - if you have a nRF52-DK board connected: flash this TAB to your board (using tockloader)
+
+- cross-compile your program
+- create a TAB (tock application bundle)
+- if you have a nRF52-DK board connected: flash this TAB to your board (using tockloader)
 
 ## Running the Integration Tests
+
 Having an nRF52-DK board at hand, integration tests can be run using `./run_hardware_tests.sh`.
 The pins P0.03 and P0.04 need to be connected (on a nRF52-DK).
 The expected output on the UART console will be as follows.
+
 ```
 [test-results]
 heap_test = "Heap works."
@@ -111,10 +122,10 @@
 
 Licensed under either of
 
- * Apache License, Version 2.0
-   ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
- * MIT license
-   ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
+- Apache License, Version 2.0
+  ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
+- MIT license
+  ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
 
 at your option.