class Asciidoctor::RFC::V2::Converter

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

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/v2/converter.rb, line 40
def initialize(backend, opts)
  super
  Asciidoctor::Compliance.natural_xrefs = false
  basebackend "html"
  outfilesuffix ".xml"
end