Custom Hero Name
A completely custom tagline for the hero
Links
AI / Agents
gdtest-hero-custom
Default description that should be overridden.
Features
- Custom hero settings
Hero with custom name, tagline, logo_height, and badges suppressed. Tests that individual hero sub-options override defaults: custom name instead of display_name, custom tagline, and badges: false.
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="#198754"/> </svg>
gdtest_hero_custom/
__init__.py
"""A package with custom hero settings."""
__version__ = "0.3.0"
__all__ = ["transform"]
def transform(value: int) -> int:
"""
Transform an integer value.
Parameters
----------
value
The input value.
Returns
-------
int
The transformed value.
"""
return value * 2README.md
# gdtest-hero-custom [](https://pypi.org/p/gdtest-hero-custom/) [](https://opensource.org/licenses/MIT) Default description that should be overridden. ## Features - Custom hero settings
great-docs.yml
display_name: Default Display Name logo: assets/logo.svg hero: name: Custom Hero Name tagline: A completely custom tagline for the hero logo_height: 120px badges: false
