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
Documentation build complete, but mkdocs not requested
72
66
```
73
67
74
-
If that worked, you can now generate the HTML format documentation pages:
75
-
76
-
```
77
-
$ mkdocs build -f docs/mkdocs.yml
78
-
```
79
-
80
-
## Viewing the generated output
68
+
## Viewing the documentation
81
69
82
-
To view the documentation locally, run the following command to start the MkDocs webpage server:
70
+
Generate the HTML files from the markdown source files, and start the MkDocs webpage server:
83
71
84
72
```
85
-
$ mkdocs serve -f docs/mkdocs.yml -a localhost:8080
73
+
$ mkdocs serve -f docs/mkdocs.yml
86
74
```
87
75
88
-
Alternatively, you can use the `invoke` command:
89
-
90
-
```
91
-
invoke dev.docs-server
92
-
```
76
+
You can then point your web browser at http://localhost:8080/
93
77
94
-
To see all the available options:
78
+
Alternatively, you can use the `invoke` command:
95
79
96
80
```
97
-
invoke dev.docs-server --help
81
+
$ invoke dev.docs-server
98
82
```
99
83
100
-
You can then point your web browser at http://localhost:8080/
84
+
If you need to, use the `-a` option after `mkdocs` or `invoke` to set the address and port. Run `invoke dev.docs-server --help` for details.
101
85
102
86
## Editing the Documentation Files
103
87
104
-
Once the server is running, it will monitor the documentation files for any changes, and regenerate the HTML pages.
88
+
Once the server is running, it will monitor the documentation files for changes, and regenerate the HTML pages as required. Refresh your web browser to see the changes.
105
89
106
90
### Admonitions
107
91
108
-
"Admonition" blocks can be added as follow:
92
+
"Admonition" blocks can be added to the documentation source as follows:
0 commit comments