ValidateLinks.

ValidateAbsoluteLinks(bool) Method

Summary

Validates absolute (often external) links. This may add a significant delay to your generation process so it's recommended absolute links are only checked periodically. The default behavior is not to check absolute links. Also note that false positive failures are common when validating external links so any links that fail the check should be subsequently checked manually.
Assembly
Wyam.Html.dll
Namespace
Wyam.Html
Containing Type
ValidateLinks

Syntax

public ValidateLinks ValidateAbsoluteLinks(bool validateAbsoluteLinks = true)

Parameters

Name Type Description
validateAbsoluteLinks bool true to validate absolute links.

Return Value

Type Description
ValidateLinks The current module instance.
GitHub