nbdev_mkdocs_docs
nbdev_mkdocs.mkdocs.nbdev_mkdocs_docs(root_path: str, refresh_quarto_settings: bool = False, use_relative_doc_links: bool = False, no_mkdocs_build: bool = False) -> None
¤
Prepare mkdocs documentation
Parameters:
Name | Type | Description | Default |
---|---|---|---|
root_path |
str
|
The root path of the project |
required |
refresh_quarto_settings |
bool
|
Flag to refresh quarto yml file. This flag should be set to |
False
|
use_relative_doc_links |
bool
|
If set to True, relative links are added to symbol references in generated
documentation. Else, the value set in doc_host in settings.ini is added to symbol references in
generated documentation. This flag should be set to |
False
|
no_mkdocs_build |
bool
|
If set to True, then the mkdocs build will be skipped. This flag should be set to
|
False
|
Note
The above docstring is autogenerated by docstring-gen library (https://github.com/airtai/docstring-gen)
Source code in nbdev_mkdocs/mkdocs.py
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 |
|