LinkType
Pennington.Generation
Classifies a broken link discovered during build-time link verification.
Fields
AnchorLinkType- Default:
2In-page anchor (fragment) link. ExternalLinkType- Default:
1Link to an external origin outside the site. ImageLinkType- Default:
3Image (or other media) reference. InternalLinkType- Default:
0Link 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
;
}