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 at the same URL with .md appended. 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

LinkType Pennington.Generation

Classifies a broken link discovered during build-time link verification.

Fields

Anchor LinkType
Default: 2
In-page anchor (fragment) link.
External LinkType
Default: 1
Link to an external origin outside the site.
Image LinkType
Default: 3
Image (or other media) reference.
Internal LinkType
Default: 0
Link to another page within the site.

Pennington.Generation.LinkType

namespace Pennington.Generation;

/// Classifies a broken link discovered during build-time link verification.
public enum LinkType
{
    /// In-page anchor (fragment) link.
    
public static const LinkType Anchor
; /// Link to an external origin outside the site.
public static const LinkType External
; /// Image (or other media) reference.
public static const LinkType Image
; /// Link to another page within the site.
public static const LinkType Internal
; }