Links
AI / Agents
gdtest-custom-css
Synthetic test for project-level custom CSS wiring
Installation
pip install gdtest-custom-cssGet Started
- API Reference — Full API documentation
- User Guide — Guides and tutorials
Source files
docs/
custom.css
/* gdtest-custom-css marker rule: unique and easily greppable so
tests can confirm this exact file was linked, not just any
stylesheet. */
.gdtest-custom-css-marker {
--gdtest-custom-css: applied;
}gdtest_custom_css/
__init__.py
"""Package demonstrating project-level custom CSS."""
__version__ = "0.1.0"
__all__ = ["widget"]
def widget(name: str) -> str:
"""
Build a text widget.
Parameters
----------
name
Label for the widget.
Returns
-------
str
The rendered widget.
"""
return f"[{name}]"user_guide/
01-page.qmd
--- title: Page --- A user-guide page, to confirm project-level CSS applies outside the homepage too.
great-docs.yml
site:
css:
- docs/custom.css