This documentation is also published as Markdown for efficient machine reading: the whole site is indexed at /llms.txt, and every page has a clean Markdown copy under /_llms/. These are generated from the same source and cost far fewer tokens to read than this rendered HTML.

Skip to main content Skip to navigation

FaviconOptions Pennington.Favicon

Host configuration for favicon / icon <link> tags emitted into the document head. The icon files themselves are user-provided static assets served and copied by the content-root static-files mechanism; this only emits the discovery markup. Set this on Favicons (templates forward it from their own options) to enable the feature; leaving it null disables it.

Properties

Icons ImmutableArray<FaviconLink>
The icon links to emit, in document order. Empty means nothing is emitted.

Pennington.Favicon.FaviconOptions

namespace Pennington.Favicon;

/// Host configuration for favicon / icon <link> tags emitted into the document head. The icon files themselves are user-provided static assets served and copied by the content-root static-files mechanism; this only emits the discovery markup. Set this on Favicons (templates forward it from their own options) to enable the feature; leaving it null disables it.
public record FaviconOptions
{
    /// The icon links to emit, in document order. Empty means nothing is emitted.
    
public ImmutableArray<FaviconLink> Icons { get; set; }
}