diff --git a/web/content/docs/tools/fileio/VTK2TIN/index.md b/web/content/docs/tools/fileio/VTK2TIN/index.md
index 8f3c657f0bc5a1775e5fdaa776a525afa972baf3..caed633eb5e42f264b2695a3a87f1c2b14716642 100644
--- a/web/content/docs/tools/fileio/VTK2TIN/index.md
+++ b/web/content/docs/tools/fileio/VTK2TIN/index.md
@@ -5,16 +5,19 @@ author = "Julian Heinze"
 +++
 
 ## Description
+
 This tool converts VTK unstructured grids (*.vtu) into TIN-format usable in geographic information systems (GIS).
-The TIN-format stores triangular irregular networks which can be considered a subclass of triangulated 2D meshes. 
+The TIN-format stores triangular irregular networks which can be considered a subclass of triangulated 2D meshes.
 The vtu-format can store a large variety of unstructured mesh types, but only 2D triangle meshes can be converted using this tool.
+
 ## Usage
+
 ```bash
-USAGE: 
+USAGE:
    TIN2VTK  -o <string> -i <string> [--] [--version] [-h]
 
 
-Where: 
+Where:
    -o <string>,  --output-vtu-file <string>
      (required)  the name of the file the mesh will be written to
 
@@ -31,8 +34,8 @@ Where:
      Displays usage information and exits.
 ```
 
-## Example:
+## Example
 
 ```bash
 VTK2TIN -i input.vtu -o output.tin
-```
\ No newline at end of file
+```