This site provides a machine-readable index at /llms.txt.

Skip to main content Skip to navigation

CrossReference Pennington.Pipeline

A resolvable cross-reference target identified by a unique id.

Properties

Route Pennington.Routing.ContentRoute
Route the reference resolves to.
Title string
Display title for the target.
Uid string
Unique identifier used in xref: links.

Constructors

.ctor

#
public record CrossReference(string Uid, string Title, ContentRoute Route);

A resolvable cross-reference target identified by a unique id.

Parameters

Uid string
Unique identifier used in xref: links.
Title string
Display title for the target.
Route ContentRoute
Route the reference resolves to.

Pennington.Pipeline.CrossReference

namespace Pennington.Pipeline;

/// A resolvable cross-reference target identified by a unique id.
public record CrossReference
{
    /// A resolvable cross-reference target identified by a unique id.
    
public record CrossReference(string Uid, string Title, ContentRoute Route);
/// Route the reference resolves to.
ContentRoute Route
; /// Display title for the target.
string Title
; /// Unique identifier used in xref: links.
string Uid
; }