SEO Checks
The SEO checker lets you put in a Url and run specific checks on the page to make sure you are using best practices. It's also part of the SEO Property.

The SEO Checker comes with a number of checks out of the box, but you can easily create your own. Just create a class that implements ISeoCheck
public interface ISeoCheck
{
string Name { get; }
Task<SeoCheckResult> Check(string url, HtmlDocument document, Content.Models.Content content);
int SortOrder { get; }
}The example below shows the built in H1 checker that checks if the H1 is missing or if you have more than one H1 tag.
Last updated