← GDG /

#220 gdtest_hero_disabled

#220 gdtest_hero_disabled OK CONFIG
Hero section disabled despite logo being configured
Hero section explicitly disabled via hero: false. Tests that setting hero: false prevents the hero from appearing even when a logo is configured (which would normally auto-enable it).
View Site → Build Log ๐Ÿงช Test Coverage

Build Mode

● Has great-docs.yml

This package ships a pre-supplied config. The great-docs init step is skipped and great-docs build uses the spec-defined configuration directly. Tests specific config options and their rendered output.

Dimensions

K13
K13funding configconfig

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="#6c757d"/>
</svg>
๐Ÿ“ gdtest_hero_disabled/
๐Ÿ“„ __init__.py
"""A package with hero disabled."""

__version__ = "0.1.0"
__all__ = ["noop"]


def noop() -> None:
    """
    Do nothing.

    Returns
    -------
    None
    """
    pass
๐Ÿ“„ README.md
# gdtest-hero-disabled

[![PyPI](https://img.shields.io/badge/pypi-v0.1.0-blue)](https://pypi.org/p/gdtest-hero-disabled/)

A package demonstrating hero: false.

## Features

- Hero is disabled
๐Ÿ“„ great-docs.yml
display_name: Hero Disabled
logo: assets/logo.svg
hero: false