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

HeadEntry Pennington.Head

A composed head tag paired with its dedup key (null for repeatable tags).

Properties

Key HeadTagKey?
Dedup key, or null when the tag is repeatable.
Tag HeadTag
The tag to emit.

Constructors

HeadEntry

#
public HeadEntry(HeadTagKey? Key, HeadTag Tag)

A composed head tag paired with its dedup key (null for repeatable tags).

Parameters

Key HeadTagKey?
Dedup key, or null when the tag is repeatable.
Tag HeadTag
The tag to emit.

Pennington.Head.HeadEntry

namespace Pennington.Head;

/// A composed head tag paired with its dedup key (null for repeatable tags).
public struct HeadEntry
{
    /// A composed head tag paired with its dedup key (null for repeatable tags).
    
public HeadEntry(HeadTagKey? Key, HeadTag Tag)
; /// Dedup key, or null when the tag is repeatable.
public HeadTagKey? Key { get; set; }
/// The tag to emit.
public HeadTag Tag { get; set; }
}