Skip to content

Commit 1a69e80

Browse files
committed
fixed hugo generation issues
1 parent 5da2884 commit 1a69e80

File tree

7 files changed

+6
-6
lines changed

7 files changed

+6
-6
lines changed

docs/reference/content/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ Welcome to the MongoDB Node.js 2.x driver documentation.
1111

1212
## What's New
1313

14-
The [What's New]({{< relref "upgrade-migration/index.md" >}}) guide explains the major new features of the driver.
14+
The [What's New]({{< relref "upgrade-migration/main.md" >}}) guide explains the major new features of the driver.
1515

1616
If you are upgrading from the 1.x series of the driver, consult the [Upgrading]({{< relref "upgrade-migration/upgrading.md" >}}) documentation for
1717
information on recent changes.
1818

1919
## Starting points
2020

21-
* [Installing the driver]({{< relref "installation-guide/index.md" >}})
22-
* [Quick start]({{< relref "quick-start/index.md" >}})
21+
* [Installing the driver]({{< relref "installation-guide/installation-guide.md" >}})
22+
* [Quick start]({{< relref "quick-start/quick-start.md" >}})
2323
* [CRUD operations]({{< relref "tutorials/crud.md" >}})
2424
* [Connect]({{< relref "tutorials/connect/index.md" >}})
2525

docs/reference/content/quick-start/index.md renamed to docs/reference/content/quick-start/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ title = "Quick Start"
99

1010
Quick Start
1111
===========
12-
This guide will show you how to set up a simple application using Node.js and MongoDB. Its scope is only how to set up the driver and perform the simple CRUD operations. For more in-depth coverage, see the [tutorials]({{< relref "reference/index.md" >}}).
12+
This guide will show you how to set up a simple application using Node.js and MongoDB. Its scope is only how to set up the driver and perform the simple CRUD operations. For more in-depth coverage, see the [tutorials]({{< relref "reference/main.md" >}}).
1313

1414
Create the package.json file
1515
----------------------------
@@ -311,4 +311,4 @@ MongoClient.connect(url, function(err, db) {
311311
});
312312
```
313313

314-
For more detailed information, see the [tutorials]({{< relref "tutorials/index.md" >}}).
314+
For more detailed information, see the [tutorials]({{< relref "tutorials/main.md" >}}).

docs/reference/content/tutorials/crud.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ title = "CRUD Operations"
1111
# CRUD Operations
1212

1313
For a walkthrough of the main CRUD operations please refer to the
14-
[Quick Start guide]({{< ref "quick-start/index.md" >}}).
14+
[Quick Start guide]({{< ref "quick-start/quick-start.md" >}}).
1515

1616
Driver CRUD operations are defined as the operations performed to create, read, update, and delete documents.
1717
This tutorial covers both the basic CRUD methods and the specialized ``findAndModify`` based methods

0 commit comments

Comments
 (0)