RenderingStage
Pipeline stage responsible for rendering the abstract syntax tree (AST) into a text output.
This stage takes an AstRoot (produced by the ParsingStage) as input and produces a CharSequence as output. It uses a NodeRenderer to visit the AST and render it into the target format (e.g., HTML).
Properties
Functions
Link copied to clipboard
Executes this pipeline stage with the given input and shared data.
Link copied to clipboard
Utility function to execute a pipeline stage that takes Unit as input.
Link copied to clipboard
Invokes the hook function for this stage, if one is defined.
Link copied to clipboard
Link copied to clipboard
Chains two pipeline stages together to form a new pipeline stage.
Link copied to clipboard
infix fun <A, B> PipelineStage<A, B>.thenOptionally(next: PipelineStage<B, B>?): PipelineStage<A, B>
Conditionally chains this pipeline stage with next if it is not null.