class Asciidoctor::Extensions::Postprocessor

Postprocessor implementations must Postprocessor.
document.
TIP: Postprocessors can also be used to relocate assets needed by the published
Document object, as well as various backend-related document attributes.
the Document. The backend and be looked up using the backend method on the
The markup format in the String is determined by the backend used to convert
String as necessary and returns the String replacement.
method of each registered Postprocessor. The Preprocessor modifies the
Asciidoctor passes a reference to the converted String to the {Processor#process}
it is written to the output stream.
Public: Postprocessors are run after the document is converted, but before

def process document, output

def process document, output
  raise ::NotImplementedError
end