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

RawTag Pennington.Head

An escape hatch carrying arbitrary head markup verbatim (e.g. AdditionalHtmlHeadContent).

Properties

Html string
Raw HTML inserted into the head as-is.

Constructors

RawTag

#
public RawTag(string Html)

An escape hatch carrying arbitrary head markup verbatim (e.g. AdditionalHtmlHeadContent).

Parameters

Html string
Raw HTML inserted into the head as-is.

Pennington.Head.RawTag

namespace Pennington.Head;

/// An escape hatch carrying arbitrary head markup verbatim (e.g. AdditionalHtmlHeadContent).
public record RawTag
{
    /// Raw HTML inserted into the head as-is.
    
public string Html { get; set; }
/// An escape hatch carrying arbitrary head markup verbatim (e.g. AdditionalHtmlHeadContent).
public RawTag(string Html)
; }