├── .editorconfig ├── .github ├── FUNDING.yml └── workflows │ └── ci.yml ├── .gitignore ├── Gemfile ├── LICENSE ├── README.adoc ├── Rakefile ├── asciidoctor-html5s.gemspec ├── data └── templates │ ├── _attribution.html.slim │ ├── _footer.html.slim │ ├── _footnotes.html.slim │ ├── _header.html.slim │ ├── _toc.html.slim │ ├── admonition.html.slim │ ├── audio.html.slim │ ├── colist.html.slim │ ├── dlist.html.slim │ ├── document.html.slim │ ├── embedded.html.slim │ ├── empty.html.slim │ ├── example.html.slim │ ├── floating_title.html.slim │ ├── helpers.rb │ ├── image.html.slim │ ├── inline_anchor.html.slim │ ├── inline_break.html.slim │ ├── inline_button.html.slim │ ├── inline_callout.html.slim │ ├── inline_footnote.html.slim │ ├── inline_image.html.slim │ ├── inline_indexterm.html.slim │ ├── inline_kbd.html.slim │ ├── inline_menu.html.slim │ ├── inline_quoted.html.slim │ ├── listing.html.slim │ ├── literal.html.slim │ ├── olist.html.slim │ ├── open.html.slim │ ├── outline.html.slim │ ├── page_break.html.slim │ ├── paragraph.html.slim │ ├── pass.html.slim │ ├── preamble.html.slim │ ├── quote.html.slim │ ├── section.html.slim │ ├── sidebar.html.slim │ ├── stem.html.slim │ ├── table.html.slim │ ├── thematic_break.html.slim │ ├── toc.html.slim │ ├── ulist.html.slim │ ├── verse.html.slim │ └── video.html.slim ├── lib ├── asciidoctor-html5s.rb └── asciidoctor │ ├── html5s.rb │ └── html5s │ ├── attached_colist_treeprocessor.rb │ ├── html_pipeline_highlighter.rb │ ├── replacements.rb │ └── version.rb ├── package.json ├── src └── asciidoctor-html5s.tmpl.js └── test └── examples ├── asciidoc-html ├── README ├── example.adoc ├── image.adoc ├── inline_image.adoc ├── inline_quoted.adoc ├── listing.adoc ├── outline.adoc ├── regressions.adoc ├── replacements.adoc └── video.adoc └── html5 ├── admonition.html ├── audio.html ├── colist.html ├── dlist.html ├── document.html ├── embedded.html ├── example.html ├── floating_title.html ├── image.html ├── inline_anchor.html ├── inline_break.html ├── inline_button.html ├── inline_callout.html ├── inline_footnote.html ├── inline_image.html ├── inline_kbd.html ├── inline_menu.html ├── inline_quoted.html ├── listing.html ├── literal.html ├── olist.html ├── open.html ├── outline.html ├── page_break.html ├── paragraph.html ├── pass.html ├── preamble.html ├── quote.html ├── regressions.html ├── replacements.html ├── section.html ├── sidebar.html ├── stem.html ├── table.html ├── thematic_break.html ├── toc.html ├── ulist.html ├── verse.html └── video.html /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/README.adoc -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/Rakefile -------------------------------------------------------------------------------- /asciidoctor-html5s.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/asciidoctor-html5s.gemspec -------------------------------------------------------------------------------- /data/templates/_attribution.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/_attribution.html.slim -------------------------------------------------------------------------------- /data/templates/_footer.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/_footer.html.slim -------------------------------------------------------------------------------- /data/templates/_footnotes.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/_footnotes.html.slim -------------------------------------------------------------------------------- /data/templates/_header.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/_header.html.slim -------------------------------------------------------------------------------- /data/templates/_toc.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/_toc.html.slim -------------------------------------------------------------------------------- /data/templates/admonition.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/admonition.html.slim -------------------------------------------------------------------------------- /data/templates/audio.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/audio.html.slim -------------------------------------------------------------------------------- /data/templates/colist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/colist.html.slim -------------------------------------------------------------------------------- /data/templates/dlist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/dlist.html.slim -------------------------------------------------------------------------------- /data/templates/document.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/document.html.slim -------------------------------------------------------------------------------- /data/templates/embedded.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/embedded.html.slim -------------------------------------------------------------------------------- /data/templates/empty.html.slim: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/templates/example.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/example.html.slim -------------------------------------------------------------------------------- /data/templates/floating_title.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/floating_title.html.slim -------------------------------------------------------------------------------- /data/templates/helpers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/helpers.rb -------------------------------------------------------------------------------- /data/templates/image.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/image.html.slim -------------------------------------------------------------------------------- /data/templates/inline_anchor.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_anchor.html.slim -------------------------------------------------------------------------------- /data/templates/inline_break.html.slim: -------------------------------------------------------------------------------- 1 | =text 2 | br 3 | -------------------------------------------------------------------------------- /data/templates/inline_button.html.slim: -------------------------------------------------------------------------------- 1 | kbd.button 2 | samp =text 3 | -------------------------------------------------------------------------------- /data/templates/inline_callout.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_callout.html.slim -------------------------------------------------------------------------------- /data/templates/inline_footnote.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_footnote.html.slim -------------------------------------------------------------------------------- /data/templates/inline_image.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_image.html.slim -------------------------------------------------------------------------------- /data/templates/inline_indexterm.html.slim: -------------------------------------------------------------------------------- 1 | - if type == :visible 2 | =text 3 | -------------------------------------------------------------------------------- /data/templates/inline_kbd.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_kbd.html.slim -------------------------------------------------------------------------------- /data/templates/inline_menu.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_menu.html.slim -------------------------------------------------------------------------------- /data/templates/inline_quoted.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/inline_quoted.html.slim -------------------------------------------------------------------------------- /data/templates/listing.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/listing.html.slim -------------------------------------------------------------------------------- /data/templates/literal.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/literal.html.slim -------------------------------------------------------------------------------- /data/templates/olist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/olist.html.slim -------------------------------------------------------------------------------- /data/templates/open.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/open.html.slim -------------------------------------------------------------------------------- /data/templates/outline.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/outline.html.slim -------------------------------------------------------------------------------- /data/templates/page_break.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/page_break.html.slim -------------------------------------------------------------------------------- /data/templates/paragraph.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/paragraph.html.slim -------------------------------------------------------------------------------- /data/templates/pass.html.slim: -------------------------------------------------------------------------------- 1 | =content 2 | -------------------------------------------------------------------------------- /data/templates/preamble.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/preamble.html.slim -------------------------------------------------------------------------------- /data/templates/quote.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/quote.html.slim -------------------------------------------------------------------------------- /data/templates/section.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/section.html.slim -------------------------------------------------------------------------------- /data/templates/sidebar.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/sidebar.html.slim -------------------------------------------------------------------------------- /data/templates/stem.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/stem.html.slim -------------------------------------------------------------------------------- /data/templates/table.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/table.html.slim -------------------------------------------------------------------------------- /data/templates/thematic_break.html.slim: -------------------------------------------------------------------------------- 1 | hr 2 | -------------------------------------------------------------------------------- /data/templates/toc.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/toc.html.slim -------------------------------------------------------------------------------- /data/templates/ulist.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/ulist.html.slim -------------------------------------------------------------------------------- /data/templates/verse.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/verse.html.slim -------------------------------------------------------------------------------- /data/templates/video.html.slim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/data/templates/video.html.slim -------------------------------------------------------------------------------- /lib/asciidoctor-html5s.rb: -------------------------------------------------------------------------------- 1 | require 'asciidoctor/html5s' 2 | -------------------------------------------------------------------------------- /lib/asciidoctor/html5s.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/lib/asciidoctor/html5s.rb -------------------------------------------------------------------------------- /lib/asciidoctor/html5s/attached_colist_treeprocessor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/lib/asciidoctor/html5s/attached_colist_treeprocessor.rb -------------------------------------------------------------------------------- /lib/asciidoctor/html5s/html_pipeline_highlighter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/lib/asciidoctor/html5s/html_pipeline_highlighter.rb -------------------------------------------------------------------------------- /lib/asciidoctor/html5s/replacements.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/lib/asciidoctor/html5s/replacements.rb -------------------------------------------------------------------------------- /lib/asciidoctor/html5s/version.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/lib/asciidoctor/html5s/version.rb -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/package.json -------------------------------------------------------------------------------- /src/asciidoctor-html5s.tmpl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/src/asciidoctor-html5s.tmpl.js -------------------------------------------------------------------------------- /test/examples/asciidoc-html/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/README -------------------------------------------------------------------------------- /test/examples/asciidoc-html/example.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/example.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/image.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/image.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/inline_image.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/inline_image.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/inline_quoted.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/inline_quoted.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/listing.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/listing.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/outline.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/outline.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/regressions.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/regressions.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/replacements.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/replacements.adoc -------------------------------------------------------------------------------- /test/examples/asciidoc-html/video.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/asciidoc-html/video.adoc -------------------------------------------------------------------------------- /test/examples/html5/admonition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/admonition.html -------------------------------------------------------------------------------- /test/examples/html5/audio.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/audio.html -------------------------------------------------------------------------------- /test/examples/html5/colist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/colist.html -------------------------------------------------------------------------------- /test/examples/html5/dlist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/dlist.html -------------------------------------------------------------------------------- /test/examples/html5/document.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/document.html -------------------------------------------------------------------------------- /test/examples/html5/embedded.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/embedded.html -------------------------------------------------------------------------------- /test/examples/html5/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/example.html -------------------------------------------------------------------------------- /test/examples/html5/floating_title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/floating_title.html -------------------------------------------------------------------------------- /test/examples/html5/image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/image.html -------------------------------------------------------------------------------- /test/examples/html5/inline_anchor.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_anchor.html -------------------------------------------------------------------------------- /test/examples/html5/inline_break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_break.html -------------------------------------------------------------------------------- /test/examples/html5/inline_button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_button.html -------------------------------------------------------------------------------- /test/examples/html5/inline_callout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_callout.html -------------------------------------------------------------------------------- /test/examples/html5/inline_footnote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_footnote.html -------------------------------------------------------------------------------- /test/examples/html5/inline_image.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_image.html -------------------------------------------------------------------------------- /test/examples/html5/inline_kbd.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_kbd.html -------------------------------------------------------------------------------- /test/examples/html5/inline_menu.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_menu.html -------------------------------------------------------------------------------- /test/examples/html5/inline_quoted.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/inline_quoted.html -------------------------------------------------------------------------------- /test/examples/html5/listing.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/listing.html -------------------------------------------------------------------------------- /test/examples/html5/literal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/literal.html -------------------------------------------------------------------------------- /test/examples/html5/olist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/olist.html -------------------------------------------------------------------------------- /test/examples/html5/open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/open.html -------------------------------------------------------------------------------- /test/examples/html5/outline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/outline.html -------------------------------------------------------------------------------- /test/examples/html5/page_break.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/page_break.html -------------------------------------------------------------------------------- /test/examples/html5/paragraph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/paragraph.html -------------------------------------------------------------------------------- /test/examples/html5/pass.html: -------------------------------------------------------------------------------- 1 | 2 |
Allons-y!
image:tiger.png[] 3 | -------------------------------------------------------------------------------- /test/examples/html5/preamble.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/preamble.html -------------------------------------------------------------------------------- /test/examples/html5/quote.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/quote.html -------------------------------------------------------------------------------- /test/examples/html5/regressions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/regressions.html -------------------------------------------------------------------------------- /test/examples/html5/replacements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/replacements.html -------------------------------------------------------------------------------- /test/examples/html5/section.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/section.html -------------------------------------------------------------------------------- /test/examples/html5/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/sidebar.html -------------------------------------------------------------------------------- /test/examples/html5/stem.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/stem.html -------------------------------------------------------------------------------- /test/examples/html5/table.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jirutka/asciidoctor-html5s/HEAD/test/examples/html5/table.html -------------------------------------------------------------------------------- /test/examples/html5/thematic_break.html: -------------------------------------------------------------------------------- 1 | 2 |