Class Asciidoctor::Converter::Html5Converter
In: lib/asciidoctor/converter/html5.rb
Parent: Converter::BuiltIn

A built-in {Converter} implementation that generates HTML 5 output consistent with the html5 backend from AsciiDoc Python.

Methods

Constants

QUOTE_TAGS = { :monospaced => ['<code>', '</code>', true], :emphasis => ['<em>', '</em>', true], :strong => ['<strong>', '</strong>', true], :double => ['&#8220;', '&#8221;', false], :single => ['&#8216;', '&#8217;', false], :mark => ['<mark>', '</mark>', true], :superscript => ['<sup>', '</sup>', true], :subscript => ['<sub>', '</sub>', true], :asciimath => ['\$', '\$', false], :latexmath => ['\(', '\)', false]
SvgPreambleRx = /\A.*?(?=<svg\b)/m
SvgStartTagRx = /\A<svg[^>]*>/
DimensionAttributeRx = /\s(?:width|height|style)=(["']).*?\1/

Public Class methods

Public Instance methods

[Validate]