Skip to content

Commit 0b11332

Browse files
committed
Fixing links on docs home page
1 parent 5f18c64 commit 0b11332

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ response = client.get("/v1/search", params={"q": "marklogic and python", "pageLe
2727
```
2828

2929
The example above and the examples throughout this documentation depend on a MarkLogic user named "python-user".
30-
If you wish to try these examples on your own installation of MarkLogic, please see [the setup guide](/setup)
30+
If you wish to try these examples on your own installation of MarkLogic, please see [the setup guide](example-setup.md)
3131
for instructions on creating this user.
3232

33-
Otherwise, please see the [guide on creating a client](/client) for more information on connecting to a
34-
MarkLogic REST API instance. The [guide on managing documents](/documents) provides
33+
Otherwise, please see the [guide on creating a client](creating-client.md) for more information on connecting to a
34+
MarkLogic REST API instance. The [guide on managing documents](managing-documents/managing-documents.md) provides
3535
more information on how the client simplifies writing and reading multiple documents in a single request.
3636

docs/managing-documents/reading.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ handling the response by converting it into a list of `Document` instances via t
1313
## Setup for examples
1414

1515
The examples below all assume that you have created a new MarkLogic user named "python-user" as described in the
16-
[setup guide](/setup). To run these examples, please run the following script first, which will
16+
[setup guide](../example-setup.md). To run these examples, please run the following script first, which will
1717
create a `Client` instance that interacts with the out-of-the-box "Documents" database in MarkLogic:
1818

1919
```

docs/managing-documents/searching.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ via the `client.documents.search` method.
1515
## Setup for examples
1616

1717
The examples below all assume that you have created a new MarkLogic user named "python-user" as described in the
18-
[setup guide](/setup). To run these examples, please run the following script first, which will
18+
[setup guide](../example-setup.md). To run these examples, please run the following script first, which will
1919
create a `Client` instance that interacts with the out-of-the-box "Documents" database in MarkLogic:
2020

2121
```
@@ -124,7 +124,7 @@ docs = client.documents.search(collections=["python-search-example"])
124124
assert len(docs) == 2
125125
```
126126

127-
Similar to [reading documents](/documents/reading), you can use the `categories` argument to control what is returned for
127+
Similar to [reading documents](reading.md), you can use the `categories` argument to control what is returned for
128128
each matching document:
129129

130130
```

docs/managing-documents/writing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ simplifies the use of this endpoint via the `client.documents.write` method and
1212
class.
1313

1414
The examples below all assume that you have created a new MarkLogic user named "python-user" as described in the
15-
[setup guide](/setup). In addition, each of the examples below requires the following `Client` instance to be created
15+
[setup guide](../example-setup.md). In addition, each of the examples below requires the following `Client` instance to be created
1616
first:
1717

1818
```

0 commit comments

Comments
 (0)