You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/3.customization.md
+39Lines changed: 39 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,45 @@ Set up your very own logo with an image of your choice in two ways:
21
21
22
22
Set up your very own header background with an image of your choice by placing an image file named `header-bg.{some-extension}` in the `assets/theme` folder.
23
23
24
+
## Documentation body
25
+
26
+
### Previous and Next buttons
27
+
28
+
Each page of the documentation has buttons that allow you to navigate to the previous and next pages. These buttons are placed right after article content.
29
+
30
+
These cards are customizable in `app.config.ts` by key `exactproDocs.prevNextCards` (see below).
31
+
32
+
```ts
33
+
exportdefaultdefineAppConfig({
34
+
exactproDocs: {
35
+
prevNextCards: {
36
+
/**
37
+
* Display options for the description of the page in prev/next cards
38
+
*/
39
+
description: {
40
+
/**
41
+
* Choose display type for the description of the page in prev/next cards.
42
+
*
43
+
* 'full' - display full description
44
+
* 'limited' - display first n lines of description
45
+
* 'hidden' - hide description
46
+
*
47
+
* @default"full"
48
+
*/
49
+
display: 'full',
50
+
/**
51
+
* Limit of lines for the description of the page in prev/next cards
0 commit comments