diff --git a/README.md b/README.md
index 228f6c56..4255b26f 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,7 @@ jsprit
jsprit is a java based, open source toolkit for solving rich [Traveling Salesman Problems(TSP)](http://en.wikipedia.org/wiki/Travelling_salesman_problem") and [Vehicle Routing Problems(VRP)](http://neo.lcc.uma.es/vrp/vehicle-routing-problem/).
It is lightweight, flexible and easy-to-use, and based on a single all-purpose [meta-heuristic](../docs/Meta-Heuristic.md) currently solving
+
- Capacitated VRP
- Multiple Depot VRP
- VRP with Time Windows
diff --git a/docs/Classical-Problems-Examples.md b/docs/Classical-Problems-Examples.md
index 67e44f95..2ae34087 100644
--- a/docs/Classical-Problems-Examples.md
+++ b/docs/Classical-Problems-Examples.md
@@ -1,9 +1,9 @@
-- Capacitated VRP

-- Multiple Depot VRP 
-- VRP with Time Windows
-- VRP with Backhauls (Deliveries first)
-- VRP with Backhauls (mixed Pickups and Deliveries)
-- VRP with Pickups and Deliveries
-- VRP with Heterogeneous Fleet
-- Traveling Salesman Problem
-- Dial-a-Ride Problem
\ No newline at end of file
+- Capacitated VRP

+- Multiple Depot VRP 
+- VRP with Time Windows
+- VRP with Backhauls (Deliveries first)
+- VRP with Backhauls (mixed Pickups and Deliveries)
+- VRP with Pickups and Deliveries
+- VRP with Heterogeneous Fleet
+- Traveling Salesman Problem
+- Dial-a-Ride Problem
\ No newline at end of file
diff --git a/docs/Getting-Started.md b/docs/Getting-Started.md
index 58fad257..aea9645f 100644
--- a/docs/Getting-Started.md
+++ b/docs/Getting-Started.md
@@ -12,14 +12,15 @@ jsprit is a multi-module project and consists of:
#### Maven way
If you want to use the latest release of jsprit-core, add the following lines to your pom:
-
<dependency>
+```
+<dependency>
<groupId>com.graphhopper</groupId>
<artifactId>jsprit-core</artifactId>
<version>{version}</version>
</dependency>
-
+```
-Find the latest versions here: [mvn repository](https://mvnrepository.com/artifact/com.graphhopper/jsprit-core).
+Find the latest versions here: [mvn repository](https://mvnrepository.com/artifact/com.graphhopper/jsprit-core)
#### Build yourself
If you want to build the master branch yourself, do this: