← GDG /

#223 gdtest_hero_no_logo

#223 gdtest_hero_no_logo OK CONFIG
Hero with logo suppressed but name/tagline/badges shown
Hero with logo suppressed via hero.logo: false. Tests that the hero section still renders name, tagline, and badges even when the hero-specific logo is disabled.
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="#dc3545"/>
</svg>
๐Ÿ“ gdtest_hero_no_logo/
๐Ÿ“„ __init__.py
"""A package with a text-only hero."""

__version__ = "0.1.0"
__all__ = ["check"]


def check(value: str) -> bool:
    """
    Check if a value is valid.

    Parameters
    ----------
    value
        The value to check.

    Returns
    -------
    bool
        True if valid.
    """
    return bool(value)
๐Ÿ“„ README.md
# gdtest-hero-no-logo

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

A package with a text-only hero section.

## Features

- Text-only hero
๐Ÿ“„ great-docs.yml
display_name: Hero No Logo
logo: assets/logo.svg
hero:
  logo: false