mirror of
https://github.com/tcsenpai/Zundler.git
synced 2025-06-06 19:45:27 +00:00

This is because some documents alter itself using `document.write`, which can insert again tags (img, style, script) that expect to live in a normal environment. This commit also refactors some of the `retrieveFile` logic. The function should behave differently when called in the iframe vs the parent document.
11 lines
264 B
Python
11 lines
264 B
Python
import pydata_sphinx_theme
|
|
|
|
project = "pydata-theme"
|
|
copyright = "2024, Adrian Vollmer"
|
|
author = "Adrian Vollmer"
|
|
version = "0.0.1"
|
|
|
|
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store", ".venv"]
|
|
html_theme = "pydata_sphinx_theme"
|
|
html_logo = "_static/logo.svg"
|