VisitorContinueKind - SwiftDocOrg/CommonMark GitHub Wiki

VisitorContinueKind

public enum VisitorContinueKind

Enumeration Cases

visitChildren

The visitor should visit the descendents of the current node.

case visitChildren

skipChildren

The visitor should avoid visiting the descendents of the current node.

case skipChildren

inherit

The visitor should inherit the behavior from the current context.

case inherit