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 ac5af692..492c2697 100644
--- a/docs/Getting-Started.md
+++ b/docs/Getting-Started.md
@@ -1,7 +1,7 @@
-####Requirements
+#### Requirements
jsprit requires Java 1.7.0 or later.
-####Modules
+#### Modules
jsprit is a multi-module project and consists of:
- jsprit-core
- jsprit-analysis
@@ -9,19 +9,20 @@ jsprit is a multi-module project and consists of:
- jsprit-examples
- jsprit-io
-####Maven way
+#### 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
+#### Build yourself
If you want to build the master branch yourself, do this:
```
@@ -30,7 +31,7 @@ cd jsprit
mvn clean install
```
-####If you do not have an IDE and you want to use Maven
+#### If you do not have an IDE and you want to use Maven
the following documentation is recommended: