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

IRedirectable Pennington.FrontMatter

Content that can redirect to another URL.

Properties

RedirectUrl string
Target URL when this page should redirect; null or empty means no redirect.

Pennington.FrontMatter.IRedirectable

namespace Pennington.FrontMatter;

/// Content that can redirect to another URL.
public interface IRedirectable
{
    /// Target URL when this page should redirect; null or empty means no redirect.
    
public string RedirectUrl { get; }
}