1
0
mirror of https://github.com/squidfunk/mkdocs-material.git synced 2024-11-23 23:21:00 +01:00

Documentation (#7604)

This commit is contained in:
Marius Maryniak 2024-10-09 10:02:32 +02:00 committed by GitHub
parent f0c99d89da
commit 10177cc275
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -484,3 +484,16 @@ Instead, always use fully qualified URLs:
``` js
const url ="https://example.com/script.js"
```
Note that the plugin does not scan embedded HTML for external assets
this is related to MkDocs, as it does not process HTML
(not to be confused with the generated HTML) in the plugin pipeline.
To self-host external assets of an embedded HTML,
it has to be explicitly listed under [`extra_templates`][extra_templates] in `mkdocs.yml`:
[extra_templates]: https://www.mkdocs.org/user-guide/configuration/#extra_templates
``` yaml
extra_templates:
- embed.html
```