Closed
Description
Tested on Calibre 7.3.0, Kindle Paperwhite 3 (2015) 7th Gen with firmware 5.16.2.1.1, and Sigil 2.0.2.
I install and run asciidoctor-epub3
like this:
rvm --force gemset delete v200
rvm gemset create v200
rvm gemset use v200
gem install nokogiri -v 1.15.5
NOKOGIRI_USE_SYSTEM_LIBRARIES=1 gem install asciidoctor
NOKOGIRI_USE_SYSTEM_LIBRARIES=1 gem install asciidoctor-epub3 -v 2.0.0
asciidoctor-epub3 -o v200.epub mwe.adoc
The input file mwe.adoc
and the output follow:
= Book Title
Author Name
:doctype: book
:imagesdir: images
//...and so on
== Chapter One
Some _interesting_ *text* here.
Whereas on 1.5.1, the tags work. I install and run like this:
rvm --force gemset delete v151
rvm gemset create v151
rvm gemset use v151
gem install nokogiri -v 1.15.5
NOKOGIRI_USE_SYSTEM_LIBRARIES=1 gem install asciidoctor
NOKOGIRI_USE_SYSTEM_LIBRARIES=1 gem install asciidoctor-epub3 -v 1.5.1
asciidoctor-epub3 -o v151.epub mwe.adoc
The output follows: