Links
AI / Agents
gdtest-hero-index-qmd
A package with an index.qmd landing page.
Overview
This tests that hero generation works from an index.qmd source.
Features
- Custom index.qmd content
- Badge auto-extraction
Source files
assets/
logo.svg
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32"> <circle cx="16" cy="16" r="14" fill="#6610f2"/> </svg>
gdtest_hero_index_qmd/
__init__.py
"""A package with an index.qmd landing page."""
__version__ = "0.1.0"
__all__ = ["compute"]
def compute(x: float, y: float) -> float:
"""
Compute the sum of two values.
Parameters
----------
x
First value.
y
Second value.
Returns
-------
float
The sum.
"""
return x + ygreat-docs.yml
display_name: Hero Index QMD logo: assets/logo.svg
index.qmd
# gdtest-hero-index-qmd [](https://pypi.org/p/gdtest-hero-index-qmd/) A package with an index.qmd landing page. ## Overview This tests that hero generation works from an index.qmd source. ## Features - Custom index.qmd content - Badge auto-extraction