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