diff --git a/src/site/markdown/tutorials/direct-location-with-DEM.md b/src/site/markdown/tutorials/direct-location-with-DEM.md
index ab2ec7729d6395a412a1161d466d563c08b4773f..04aceaae754226a960e8bc4ef66cb692210155d6 100644
--- a/src/site/markdown/tutorials/direct-location-with-DEM.md
+++ b/src/site/markdown/tutorials/direct-location-with-DEM.md
@@ -1,4 +1,4 @@
-<!--- Copyright 2013-2017 CS Systèmes d'Information
+<!--- Copyright 2013-2018 CS Systèmes d'Information
   Licensed under the Apache License, Version 2.0 (the "License");
   you may not use this file except in compliance with the License.
   You may obtain a copy of the License at
@@ -14,30 +14,48 @@
 
 # Direct Location with a DEM
 
-The aim of this tutorial is to compute a direct location grid by intersection of the line of sight with a DEM (Digital Elevation Model), using Duvenhage's algorithm. This algorithm is the most performant one in Rugged. 
+The aim of this tutorial is to compute a direct location grid by intersection of 
+the line of sight with a DEM (Digital Elevation Model), using Duvenhage's algorithm. 
+This algorithm is the most performant one in Rugged. 
 
 The following figure shows the effects of taking into account the DEM in the computation of latitude, longitude and altitude:
 
-![RuggedExplained.png](../images/RuggedExplained.png)
+![RuggedExplained.png](src/site/resources/images/RuggedExplained.png)
 
 ## Feeding Rugged with DEM tiles
 
-Rugged does not parse DEM files but takes buffers of elevation data as input. It is up to the calling application to read the DEM and load the data into buffers. Rugged provides a tile mecanism with cache for large DEMs allowing the user to load one tile at a time. This is in line with the format of world coverage DEMs such as SRTM. Rugged offers an interface for updating the DEM tiles in cache with a callback function triggered everytime a coordinate falls outside the current region. 
+Rugged does not parse DEM files but takes buffers of elevation data as input. 
+It is up to the calling application to read the DEM and load the data into buffers. 
+Rugged provides a tile mecanism with cache for large DEMs allowing the user to load 
+one tile at a time. This is in line with the format of world coverage DEMs such as SRTM. 
+Rugged offers an interface for updating the DEM tiles in cache with a callback function 
+triggered everytime a coordinate falls outside the current region. 
 
-The calling application must implement the callback function for loading the tiles. We recommend to use GDAL (http://www.gdal.org/) to parse the DEM files as it handles most formats (including geoTIFF for Aster DEM or DTED for SRTM). Rugged does not include the parsing of the DEM, by design, and yet we could have used GDAL. We want Rugged to remain a low-level library that does not pull too many third-party libraries.
+The calling application must implement the callback function for loading the tiles. 
+We recommend to use GDAL (http://www.gdal.org/) to parse the DEM files as it handles most 
+formats (including geoTIFF for Aster DEM or DTED for SRTM). Rugged does not include the 
+parsing of the DEM, by design, and yet we could have used GDAL. 
+We want Rugged to remain a low-level library that does not pull too many third-party libraries.
 
  
 ### Implementing the interface TileUpdater for DEM loading. 
 
-In this tutorial, we will not include real DEM data. Instead we are going to create a fake DEM representing a volcano in a form of a perfect cone, similar to the Mayon volcano in the Philippines, except that we will locate it somewhere just below our satellite. This example is already part of Rugged tests cases, the source code is available in the package `org.orekit.rugged.raster`, file VolcanicConeElevationUpdater.java. 
+In this tutorial, we will not include real DEM data. Instead we are going to create a fake DEM 
+representing a volcano in a form of a perfect cone, similar to the Mayon volcano 
+in the Philippines, except that we will locate it somewhere just below our satellite. 
+This example is already part of Rugged tests cases, the source code is available 
+in the package *org.orekit.rugged.raster*, file VolcanicConeElevationUpdater.java. 
 
-The class `VolcanicConeElevationUpdater` implements the interface `TileUpdater` with its method `updateTile`. The method is in charge of loading a tile. The extent of the tile must be such that it covers at least the ground point with coordinates (latitude, longitude) which are passed as arguments to the method. The tile is an object of type `UpdatableTile` which has two methods :
+The class *VolcanicConeElevationUpdater* implements the interface *TileUpdater* with its method *updateTile*. 
+The method is in charge of loading a tile. The extent of the tile must be such that it covers 
+at least the ground point with coordinates (latitude, longitude) which are passed as arguments to the method. 
+The tile is an object of type *UpdatableTile* which has two methods :
 
-* `setGeometry(minLatitude, minLongitude, latitudeStep, longitudeStep, latitudeRows, longitudeRows)` : initializes the extent of the new tile before loading
+* *setGeometry(minLatitude, minLongitude, latitudeStep, longitudeStep, latitudeRows, longitudeRows)* : initializes the extent of the new tile before loading
 
-* `setElevation(latIdx, longIdx, elevation)` : fills the tile buffer at indices (latIdx, lonIdx) with value elevation    
+* *setElevation(latIdx, longIdx, elevation)* : fills the tile buffer at indices (latIdx, lonIdx) with value elevation    
 
-Here's the source code of the class `VolcanicConeElevationUpdater` :
+Here's the source code of the class *VolcanicConeElevationUpdater* :
 
     import org.hipparchus.util.FastMath;
     import org.orekit.rugged.raster.TileUpdater;
@@ -88,21 +106,22 @@ Here's the source code of the class `VolcanicConeElevationUpdater` :
 
 ### Important notes on DEM tiles :
 
-* Ground point elevation are obtained by bilinear interpolation between 4 neighbouring cells. There is no specific algorithm for border management. As a consequence, a point falling on the border of the tile is considered outside. **DEM tiles must be overlapping by at least one line/column in all directions**, in a similar way as for the SRTM DEMs. 
+* Ground point elevation are obtained by bilinear interpolation between 4 neighbouring cells. There is no specific algorithm for border management. As a consequence, a point falling on the border of the tile is considered outside. **DEM tiles must be overlapping by at least one line/column in all directions**, :interrobang: in a similar way as for the SRTM DEMs. :interrobang: 
 
 * In Rugged terminology, the minimum latitude and longitude correspond to the centre of the farthest Southwest cell of the DEM. Be careful if using GDAL to pass the correct information as there is half a pixel shift with respect to the lower left corner coordinates in gdalinfo.
 
 The following diagram illustrates proper DEM tiling with one line/column overlaps between neighbouring tiles :
 
-![DEM-tiles-overlap.png](../images/DEM-tiles-overlap.png)
+![DEM-tiles-overlap.png](src/site/resources/images/DEM-tiles-overlap.png)
 
 This diagram tries to represent the meaning of the different parameters in the definition of a tile :
 
-![tile-description.png](../images/tile-description.png)
+![tile-description.png](src/site/resources/images/tile-description.png)
 
 ## Initializing Rugged with a DEM
 
-The initialization step differs slightly from the first tutorial [Direct location](direct-location.html), as we need to pass the information about our TileUpdater.  
+The initialization step differs slightly from the first tutorial [Direct location](direct-location.md), 
+as we need to pass the information about our TileUpdater.  
 
 Instantiate an object derived from TileUpdater :
 
@@ -127,7 +146,8 @@ Initialize Rugged with these parameters :
 
 ## Computing a direct location grid
 
-In a similar way as in the first tutorial [DirectLocation](./direct-location.html), we call Rugged direct location method. This time it is called in a loop so as to generate a full grid on disk. 
+In a similar way as in the first tutorial [Direct Location](direct-location.md), 
+we call Rugged direct location method. This time it is called in a loop so as to generate a full grid on disk. 
 
     DataOutputStream dos = new DataOutputStream(new FileOutputStream("demDirectLoc.c1"));
     int lineStep = (maxLine - minLine) / nbLineStep;
@@ -169,4 +189,4 @@ In a similar way as in the first tutorial [DirectLocation](./direct-location.htm
     }
 
 ## Source code
-The source code is available in DirectLocationWithDEM.java (package fr.cs.examples under src/tutorials)
+The source code is available in [DirectLocationWithDEM.java](src/tutorials/java/fr/cs/examples/DirectLocationWithDEM.java) (package fr.cs.examples under src/tutorials)