WithCssClasses(string, string) Method
While converting XML documentation to HTML, any tags with the specified name will get the specified CSS class(s). This is helpful to style your XML documentation comment rendering to support the stylesheet of your site.
Namespace
Statiq.CodeAnalysis
Containing Type
AnalyzeCSharp

Syntax

public AnalyzeCSharp WithCssClasses(string tagName, string cssClasses)

Parameters

Name Type Description
tagName string Name of the tag.
cssClasses string The CSS classes to set for the specified tag name. Separate multiple CSS classes with a space (just like you would in HTML).

Return Value

Type Description
AnalyzeCSharp The current module instance.