HugoFrontMatterSyntaxNode.Find

Find(params string[])

Defines the interface for find BaseSyntaxNode

public ChildFrontMatterSyntaxNode Find(params string[] path)
ParameterTypeDescription
pathString[]The string path.

Return Value

The BaseSyntaxNode.

See Also


Find<T>(params string[])

Defines the interface for find T

public abstract T Find<T>(params string[] path)
    where T : ChildFrontMatterSyntaxNode
ParameterDescription
TThe T type.
pathThe string path.

Return Value

The T object.

See Also