class Asciidoctor::RFC::V3::Converter

A {Converter} implementation that generates RFC XML output, a format used to format RFC proposals (tools.ietf.org/html/rfc7991)

Features drawn from github.com/miekg/mmark/wiki/Syntax and github.com/riboseinc/rfc2md

Public Class Methods

new(backend, opts) click to toggle source
Calls superclass method
# File lib/asciidoctor/rfc/v3/converter.rb, line 40
def initialize(backend, opts)
  super
  # enable when Asciidoctor 1.5.7 is released
  Asciidoctor::Compliance.natural_xrefs = false
  # basebackend 'html'
  outfilesuffix ".xml"
end