Method: Asciidoctor::Converter#convert
- Defined in:
- lib/asciidoctor/converter.rb
#convert(node, transform = nil, opts = nil) ⇒ String
Converts an AbstractNode using the given transform.
This method must be implemented by a concrete converter class.
71 72 73 |
# File 'lib/asciidoctor/converter.rb', line 71 def convert node, transform = nil, opts = nil raise ::NotImplementedError, %(#{self.class} (backend: #{@backend}) must implement the ##{__method__} method) end |