Skip to content

Commit e1339fd

Browse files
authoredJul 2, 2022
revert: #889 (#896)
This reverts commit a2b1490.
1 parent fcd7642 commit e1339fd

File tree

1 file changed

+1
-51
lines changed

1 file changed

+1
-51
lines changed
 

‎docs/guide/theme-prev-next-link.md

+1-51
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,3 @@
11
# Prev Next Link
22

3-
Prev or Next Link allows you to add buttons at the end of each page that allow you to go to the previous or next topic. To enable it, add `themeConfig.prev` or `themeConfig.next` to your configuration.
4-
5-
6-
## prev
7-
8-
- Type: `NavLink | string`
9-
10-
- Details:
11-
12-
Specify the link of the previous page.
13-
14-
If you don't set this frontmatter, the link will be inferred from the sidebar config.
15-
16-
To configure the prev link manually, you can set this frontmatter to a `NavLink` object or a string:
17-
18-
- A `NavLink` object should have a `text` field and a `link` field.
19-
- A string should be the path to the target page file. It will be converted to a `NavLink` object, whose `text` is the page title, and `link` is the page route path.
20-
21-
- Example:
22-
23-
```md
24-
---
25-
# NavLink
26-
prev:
27-
text: Get Started
28-
link: /guide/getting-started.html
29-
30-
# NavLink - external url
31-
prev:
32-
text: GitHub
33-
link: https://github.com
34-
35-
# string - page file path
36-
prev: /guide/getting-started.md
37-
38-
# string - page file relative path
39-
prev: ../../guide/getting-started.md
40-
---
41-
```
42-
43-
## next
44-
45-
- Type: `NavLink | string`
46-
47-
- Details:
48-
49-
Specify the link of the next page.
50-
51-
If you don't set this frontmatter, the link will be inferred from the sidebar config.
52-
53-
The type is the same as [prev](#prev) frontmatter.
3+
Documentation coming soon...

0 commit comments

Comments
 (0)
Please sign in to comment.