@asciidoctor/core
    Preparing search index...

    Class Html5Converter

    Base class for all Asciidoctor converters.

    Subclass ConverterBase and implement convert_<nodeName> methods to handle specific node types. Register the subclass with the global registry via ConverterBase.registerFor.

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    _voidSlash: string
    _xmlMode: boolean
    backend: any

    Methods

    • Convert using only content (no wrapping).

      Parameters

      • node: object

        the node whose content to return

      Returns Promise<string>

    • Convert a node by dispatching to a convert_<transform> method.

      Parameters

      • node: AbstractNode

        the AbstractNode to convert

      • Optionaltransform: string

        hint for which method to call (default: node.nodeName)

      • Optionalopts: object

        optional hints

      Returns unknown

      the result of the convert_<transform> handler; the actual type depends on the implementation

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<any>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any
      • Optionalopts: {}

      Returns Promise<string>

    • Parameters

      • _node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Parameters

      • node: any

      Returns Promise<string>

    • Report whether this converter can handle the given transform.

      Parameters

      • transform: string

        the transform name

      Returns boolean

    • Parameters

      • node: any
      • target: any

      Returns Promise<any>

    • Register this converter class with the global registry.

      Parameters

      • ...backends: string[]

        backend names to register for

      Returns void