From 517d1f07f6631ecd97cba43b02baab98702d6892 Mon Sep 17 00:00:00 2001
From: Lars Jitschin <Lars.Jitschin@tu-dresden.de>
Date: Thu, 4 Nov 2021 12:00:09 +0100
Subject: [PATCH] Fixed heading in private_modules.md

This should satisfy the linter now
---
 .../docs/software/private_modules.md               | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/doc.zih.tu-dresden.de/docs/software/private_modules.md b/doc.zih.tu-dresden.de/docs/software/private_modules.md
index 97098d77a..4b79463f0 100644
--- a/doc.zih.tu-dresden.de/docs/software/private_modules.md
+++ b/doc.zih.tu-dresden.de/docs/software/private_modules.md
@@ -1,4 +1,4 @@
-## Project and User Private Modules
+# Project and User Private Modules
 
 Private module files allow you to load your own installed software packages into your environment
 and to handle different versions without getting into conflicts. Private modules can be setup for a
@@ -14,7 +14,7 @@ within your home or project directory to setup your own module files.
 Please see the [Environment Modules open source project's web page](http://modules.sourceforge.net/)
 for further information on writing module files.
 
-### 1. Create Directories
+## 1. Create Directories
 
 ```console
 marie@compute$ cd $HOME
@@ -24,7 +24,7 @@ marie@compute$ cd privatemodules/testsoftware
 
 (create a directory in your home directory)
 
-### 2. Notify lmod
+## 2. Notify lmod
 
 ```console
 marie@compute$ module use $HOME/privatemodules
@@ -32,7 +32,7 @@ marie@compute$ module use $HOME/privatemodules
 
 (add the directory in the list of module directories)
 
-### 3. Create Modulefile
+## 3. Create Modulefile
 
 Create a file with the name `1.0` with a
 test software in the `testsoftware` directory you created earlier
@@ -59,7 +59,7 @@ if [ module-info mode load ] {
 }
 ```
 
-### 4. Check lmod
+## 4. Check lmod
 
 Check the availability of the module with `ml av`, the output should look like this:
 
@@ -68,7 +68,7 @@ Check the availability of the module with `ml av`, the output should look like t
    testsoftware/1.0
 ```
 
-### 5. Load Module
+## 5. Load Module
 
 Load the test module with `module load testsoftware`, the output should look like this:
 
@@ -77,7 +77,7 @@ Load testsoftware version 1.0
 Module testsoftware/1.0 loaded.
 ```
 
-### Project Private Modules
+## Project Private Modules
 
 Private module files allow you to load project- or group-wide installed software into your
 environment and to handle different versions without getting into conflicts.
-- 
GitLab