-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Problem
Loading js/tacc-theme.module.js via custom HTML:
- Loads important JavaScript in unexpected way (for a MkDocs project).
- Is only done because I forgot
import('…')can dynamically load ES module.
Solution
A. Compatible with MkDocs
- Rename
js/tacc-theme.module.jstojs/tacc-theme.js. - Edit
js/tacc-theme.jsto useimport('…')instead ofimport '…'. - Edit
mkdocs.ymlto loadjs/tacc-theme.jsviaextra_javascript. - Delete
js/tacc-theme.module.jsload frommain.html.
B. Compatible with MkDocs-TACC
- Edit
mkdocs.ymlto loadjs/tacc-theme.module.jsviaextra_javascript. - Delete
js/tacc-theme.module.jsload frommain.html.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request