Panpipe v0.1.1 Panpipe.AST.Span View Source

A Panpipe.AST.Node for nodes of the Pandoc AST with the type Span.

Link to this section Summary

Functions

Returns if the AST node module represents a block element.

Returns the type of child expected for a AST node.

Returns a list of the children of a node.

Returns if the AST node module represents an inline element.

Produces the Pandoc AST data structure of a Panpipe AST node.

Transforms an Panpipe AST node recursively.

Link to this section Functions

Returns if the AST node module represents a block element.

Callback implementation for Panpipe.AST.Node.block?/0.

Returns the type of child expected for a AST node.

This function returns either :block or :inline.

Callback implementation for Panpipe.AST.Node.child_type/0.

Returns a list of the children of a node.

Callback implementation for Panpipe.AST.Node.children/1.

Returns if the AST node module represents an inline element.

Callback implementation for Panpipe.AST.Node.inline?/0.

Produces the Pandoc AST data structure of a Panpipe AST node.

Callback implementation for Panpipe.AST.Node.to_pandoc/1.

Transforms an Panpipe AST node recursively.

see Panpipe.AST.Node.transform/2

Callback implementation for Panpipe.AST.Node.transform/2.