1.0.0-beta.8
Pre-release
Pre-release
daveaglick
released this
14 Oct 20:40
·
208 commits
to main
since this release
- Updated Statiq Framework to version 1.0.0-beta.24.
- Breaking change: Removed the
ValidateAbsoluteLinks
,ValidateRelativeLinks
, andValidateLinksAsError
settings in favor of the new analyzers.
For example, to turn on absolute link validation with an error log level, setAnalyzers: ValidateAbsoluteLinks=Error
in your configuration file (or bootstrapper, etc.) - Added new
ValidateAbsoluteLinks
andValidateRelativeLinks
analyzers (replaces theValidateLinks
pipeline). - Removed the
ValidateLinks
pipeline. - Added a new
AnalyzeContent
pipeline. - Added base
HtmlAnalyzer
andSyncHtmlAnalyzer
classes for analyzing HTML content. - Added
Bootstrapper.AnalyzeHtml()
extensions for defining delegate-based HTML analyzers. - Made the
PreviewCommand
andServeCommand
in Statiq.Web.Hosting public so you can callIBootstrapper.AddCommand<PreviewCommand>()
directly without Statiq.Web.