diff --git a/docsite/site/content/getting-started/_index.md b/docsite/site/content/getting-started/_index.md
index 3c220b9..9f95ade 100644
--- a/docsite/site/content/getting-started/_index.md
+++ b/docsite/site/content/getting-started/_index.md
@@ -99,4 +99,6 @@ Ucg has builtin help on the command line. You can
* test compiles and runs any test assertions in the provided files or directories of files.
* converters will list the available conversion formats that this ucg tool supports.
-You can get more information about the options for each command by running `ucg help $command`
\ No newline at end of file
+You can get more information about the options for each command by running `ucg help $command`
+
+Next: Reference
\ No newline at end of file
diff --git a/docsite/site/content/reference/converters.md b/docsite/site/content/reference/converters.md
index 2dde66c..5ac05bc 100644
--- a/docsite/site/content/reference/converters.md
+++ b/docsite/site/content/reference/converters.md
@@ -142,4 +142,6 @@ exec my-app --log-level debug --maxMem 2048M serve --port 8080
```
The items in the args should be either strings or tuples. The tuples are turned into
-flags using the builtin flag converter.
\ No newline at end of file
+flags using the builtin flag converter.
+
+Next: HowTo Guides
\ No newline at end of file
diff --git a/docsite/site/content/reference/expressions.md b/docsite/site/content/reference/expressions.md
index 32fbde9..09687a7 100644
--- a/docsite/site/content/reference/expressions.md
+++ b/docsite/site/content/reference/expressions.md
@@ -240,4 +240,4 @@ let my_dbconf = mymacro("couchdb.example.org", "9090");
let my_dbhost = dbconf.host;
```
-Next: Statements
\ No newline at end of file
+Next: Statements
\ No newline at end of file
diff --git a/docsite/site/content/reference/statements.md b/docsite/site/content/reference/statements.md
index 78f0639..fb3be3e 100644
--- a/docsite/site/content/reference/statements.md
+++ b/docsite/site/content/reference/statements.md
@@ -96,4 +96,4 @@ out json myconf;
ucg will output the myconf tuple as json to a file called api_config.json
-Next: Converters
\ No newline at end of file
+Next: Converters
\ No newline at end of file
diff --git a/docsite/site/content/reference/types.md b/docsite/site/content/reference/types.md
index 3f1ceea..676a315 100644
--- a/docsite/site/content/reference/types.md
+++ b/docsite/site/content/reference/types.md
@@ -84,4 +84,4 @@ are allowed.
let list = [1, "two", {three = 3},];
```
-Next: Expressions
\ No newline at end of file
+Next: Expressions
\ No newline at end of file