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.
QUOTE_TAGS | = | { :emphasis => ['<em>', '</em>', true], :strong => ['<strong>', '</strong>', true], :monospaced => ['<code>', '</code>', true], :superscript => ['<sup>', '</sup>', true], :subscript => ['<sub>', '</sub>', true], :double => ['“', '”', false], :single => ['‘', '’', false], :mark => ['<mark>', '</mark>', true], :asciimath => ['\\$', '\\$', false], :latexmath => ['\\(', '\\)', false] |
SvgPreambleRx | = | /\A.*?(?=<svg[ >])/m |
SvgStartTagRx | = | /\A<svg[^>]*>/ |
DimensionAttributeRx | = | /\s(?:width|height|style)=(["']).*?\1/ |