際際滷

際際滷Share a Scribd company logo
HTML5 Is the Future of
Book Authorship
Digital Book World
January 14, 2014
Sanders Kleinfeld
OReilly Media, Inc.
The Goal of
Publishing:
Packaging and
Distribution of Ideas
Publishing!
Traditional Publishing!
Traditional Publishing Process!
(Writing!) (Conversion!) (Printing!)
Digital Publishing!
(Post)Modern Publishing Process!
(Both Print and Digital)
(Writing!) (Conversion!)
(Conversion!)
(Printing!)
Welcome to Conversion City
Enjoy Your Stay 
Conversion! Conversion!
Conversion!
The Single-Source Solution:
Replace conversions with semantic
markup and automated transforms
<!/>!
How We Did It:
1. Encourage authors to write in DocBook
(heavyweight, semantic XML markup) or AsciiDoc
(lightweight, semantic wiki-like markdown)
2. If authors prefer to write in Microsoft Word ("),
let them ("""), but convert to DocBook when
book goes into Production
3. Maintain a customized version of the DocBook
project stylesheets for automatically generating
print/ebook outputs
OReillys Single-Source Workflow
(2006-2013):
AsciiDoc
DocBook XML
asciidoc.py
DocBook XSL
EPUB Stylesheets
+ Custom CSS
EPUB
DocBook XSL
HTML5
Stylesheets
HTML5
Print PDF Web PDF
AntennaHouse +
Print CSS3
AntennaHouse +
Web CSS3
EPUB
DocBook XSL
EPUB Stylesheets
Custom XSL for
EPUB postprocessing
+ KF8/Mobi7 CSS
Mobi-ready EPUB
Kindlegen
Mobi (KF8)Source Content
Intermediate Output
Final Output For Sale
(optional; can start with DocBook)
Three Slowly
Dawning
Realizations About
Our Workflow
Realization #1:
Our toolchain is
rather heavyweight,
complex
PDF* Toolchain Stats
The DocBook project XHTML5 stylesheets** contain:
≒ 33,707 lines of HTML-generation code
≒ which rely on 8,346 lines of common dependencies
Or, in terms of functions, they contain:
≒ 1,857 <xsl:template>s
≒ which rely on 272 common dependency <xsl:template>s
* Separate code base for EPUB/Mobi!
** docbook-epub3-addon-b3!
When doing
transforms,
this complexity is a
necessary evil,
emphasis on evil
Peril of a Transform-
Heavy Workflow:
Troubleshooting is a real
$!%#@&*
An example!
Lets say your DocBook source is:
<div class="chapter">!
<h1>Poodles and Cookies</h1>!
...!
</div>!
And your desired/expected HTML
output is:
<chapter>!
<title>Poodles and Cookies</title>!
...!
</chapter>!
But then you run your transform
<p class="sect1">!
<h2>Poodles and
Cookies</h2>!
...!
</p>!
<chapter>!
<title>Poodles
and Cookies</title>!
...!
</chapter>!
And you say, What the $!%#@&*?
33,707
lines of
code
What about implementing
validation to preemptively
catch errors before running
the transforms?
book.xml:2192: element chapter: validity error : Element chapter content
does not follow the DTD, expecting (beginpage? , chapterinfo? , (title ,
subtitle? , titleabbrev?) , (toc | lot | index | glossary |
bibliography)* , tocchap? , (((calloutlist | glosslist | bibliolist |
itemizedlist | orderedlist | segmentedlist | simplelist | variablelist |
caution | important | note | tip | warning | literallayout |
programlisting | programlistingco | screen | screenco | screenshot |
synopsis | cmdsynopsis | funcsynopsis | classsynopsis | fieldsynopsis |
constructorsynopsis | destructorsynopsis | methodsynopsis | formalpara |
para | simpara | address | blockquote | graphic | graphicco |
mediaobject | mediaobjectco | informalequation | informalexample |
informalfigure | informaltable | equation | example | figure | table |
msgset | procedure | sidebar | qandaset | task | anchor | bridgehead |
remark | highlights | abstract | authorblurb | epigraph | indexterm |
beginpage)+ , (sect1* | refentry* | simplesect* | section*)) | sect1+ |
refentry+ | simplesect+ | section+) , (toc | lot | index | glossary |
bibliography)*), got (para title para para para sect1 sect1 sect1 sect1
sect1 sect1 sect1 sect1 sect1 sect1 sect1 sect1 )!
</chapter>!
Validation is still troubleshooting:
Again you say, What the $!%#@&*?
Streamlining Production
Workflows isnt just about
automating conversions
whenever possible
Its about eliminating
conversions whenever
possible!
DocBook
Why not seriously consider:
HTML
Rather than build a toolchain around:
InDesign HTML
Or:
MS Word HTML
Or:
HTML HTML
Realization #2:
HTML5 Is Ideal for
Digital-First
Content
Digital-First Content Development
When doing digital-first (ebook/web) content development,
these are the key output formats:
≒ EPUB (2.0 and 3.0)
≒ Amazon Kindle Mobi (Mobi7/KF8)
≒ PDF
≒ HTML
* docbook-epub3-addon-b3!
The Common Thread: HTML + CSS
* e.g., AntennaHouse Formatter or Prince!
= HTML + CSS + open source packaging
= HTML + CSS + proprietary packaging
= HTML + CSS + PDF processor*
= HTML + CSS (duh!)
Interactivity/Multimedia Is
Ultimately All About HTML5
<canvas> or <svg>!
!
<audio>!
!
<video>!
!
<math>!
!
!
Animation/Games
Music/Narration
Video Clips
Math Equations
Its way easier to do stuff like this:
If you start with HTML5
Its way easier to do stuff like this:
If you start with HTML5
Realization #3:
Authors Generally
Dont Want to Deal
with Markup
Authors prefer visual
authoring platforms
because
Nobodys going to
learn your markup
language
Books in Browsers 2012: Liza Daly & Keith Fahlgren,
The self-publishing book
http://www.youtube.com/watch?v=UWftLHopWQ0#t=5m25s
Non-Technical Authors Dont Like This
<?xml version="1.0" encoding="utf-8"?>!
<!DOCTYPE chapter PUBLIC "-//OASIS//DTD DocBook XML V4.5//EN" !
"http://www.oasis-open.org/docbook/xml/4.5/docbookx.dtd">!
<chapter>!
<title>Autobiography of Me</title>!
<para>I was born in 1980, I love chocolate ice cream, and I
am a <emphasis>wicked awesome</emphasis> writer, yo!</para>!
</chapter>!
DocBook
Non-Technical Authors Will
Sometimes Tolerate This
== Autobiography of Me!
!
I was born in 1980, I love chocolate ice cream,
and I am a _wicked awesome_ writer, yo!!
AsciiDoc
Non-Technical Authors
Really Want This
Microsoft
Word
But This is the
Future of Digital
Content Creation:
Medium
(Short-Form Web Publishing)
OReilly
Atlas
(Short and Long-Form Print,
Digital, and Web Publishing)
Next-Generation
Content Authoring =
≒ Visual Editing
≒ Web-Based (Responsive Design)
≒ Version-Controlled
≒ Seamless
Visual Editing
Responsive Design
On Version Control
Two Questions About Your (e)Books
Editorial Lifecycle
1. Will more than one person be
working on the manuscript files?
2. Will there be more than one draft of
the manuscript?
If you answered yes
to either question,
you need a version-
control system.
Key Feature #1 of Version Control:
Revision Snapshots
Key Feature #2 of Version Control:
Diffing
What if we
versioned
manuscripts like
software developers
version code?
Revision snapshots
tudes for Elixir: https://github.com/oreillymedia/etudes-for-elixir
Diffing
tudes for Elixir: https://github.com/oreillymedia/etudes-for-elixir
Seamless Authoring
& Production
Step #1: Author!
Step #2: Build!
Step #3: Review Results!
All Roads Lead to
HTML5
But Is It Semantic
Enough for Book
Publishing?
Introducing
HTMLBook
(github.com/oreillymedia/htmlbook)
HTMLBook =
≒ Open Spec for Book Authoring
≒ Subsets XHTML5 Vocabulary and
Content Model
≒ Adds Book-Specific Semantics (e.g.,
<section data-type="chapter>)!
≒ Open Source Tooling for Producing
Ebook Outputs
HTMLBook Sample
(github.com/oreillymedia/HTMLBook/blob/master/samples/
htmlbook.html
<html xmlns="http://www.w3.org/1999/xhtml">!
油油<head>!
油油油油<title>HTMLBook Sample</title>!
油油</head>!
油油<body data-type="book" id="htmlbook">!
<section data-type="chapter" id="chapter01">!
油油油油油油 <h1>Chapter 1. HTMLBook Markup</h1>!
油油油油油油油油 <p>This chapter describes and demonstrates the
types of markup<a data-type="indexterm"油油data-
primary="markup" data-secondary="types of"></a> that might
appear in a chapter. See <em>mappings.asciidoc</em> for
more information. HTMLBook borrows much of its
semantics油from the EPUB 3 specification, as applied via the
<a href="http://idpf.org/accessibility/guidelines/content/
semantics/epub-type.php"><code>epub:type</code></a>
attribute.</p>!
</section>!
</body>!
</html>!
OReillys Single-Source Workflow
(2006-2013):
AsciiDoc
DocBook XML
asciidoc.py
DocBook XSL
EPUB Stylesheets
+ Custom CSS
EPUB
DocBook XSL
HTML5
Stylesheets
HTML5
Print PDF Web PDF
AntennaHouse +
Print CSS3
AntennaHouse +
Web CSS3
EPUB
DocBook XSL
EPUB Stylesheets
Custom XSL for
EPUB postprocessing
+ KF8/Mobi7 CSS
Mobi-ready EPUB
Kindlegen
Mobi (KF8)Source Content
Intermediate Output
Final Output For Sale
(optional; can start with DocBook)
OReillys Single-Source Workflow (2014!):
XHTML5
EPUB Print PDF Web PDF
AntennaHouse
+ Print CSS3
AntennaHouse
+ Web CSS3
EPUB
Custom XSL for
EPUB postprocessing
+ KF8/Mobi7 CSS
Mobi-ready EPUB
Kindlegen
Mobi (KF8)
Source Content
Intermediate Output
Final Output For Sale
Packaging XSL
+ CSS
Packaging XSL
+ CSS
Contact Me!
Email: sanders@oreilly.com
Twitter: @sandersk
Ad

Recommended

The Case for Authoring and Producing Books in (X)HTML5
The Case for Authoring and Producing Books in (X)HTML5
Sanders Kleinfeld
HTML5 Is the Future of Book Authorship
HTML5 Is the Future of Book Authorship
Sanders Kleinfeld
Is HTML5 the "Magic Bullet"?
Is HTML5 the "Magic Bullet"?
Sanders Kleinfeld
Breaking up with Microsoft Word
Breaking up with Microsoft Word
cdelk
Chapter 2 introduction to html5
Chapter 2 introduction to html5
nobel mujuji
Class1slides
Class1slides
Alexis Goldstein
The Future of the Web: HTML5
The Future of the Web: HTML5
Derek Bender
Html 5 tutorial - By Bally Chohan
Html 5 tutorial - By Bally Chohan
ballychohanuk
Essential Javascript -- A Javascript &lt;b>Tutorial&lt;/b>
Essential Javascript -- A Javascript &lt;b>Tutorial&lt;/b>
tutorialsruby
lect9
lect9
tutorialsruby
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
Html
Html
Peter Kaleta
AJAX Workshop Notes
AJAX Workshop Notes
Pamela Fox
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSS
Timo Herttua
Docing in-and-out: Markdown introduction
Docing in-and-out: Markdown introduction
Allan Sun
Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)
Thinkful
Basics of css and xhtml
Basics of css and xhtml
sagaroceanic11
Easy Blogging With Emacs
Easy Blogging With Emacs
Dashamir Hoxha
html5.ppt
html5.ppt
Niharika Gupta
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
Erin M. Kidwell
Hypertext markup language (html)
Hypertext markup language (html)
Aksa Sahi
05 RD PoSD Tutorial_xhtml_to_html5_2016
05 RD PoSD Tutorial_xhtml_to_html5_2016
Rich Dron
Technical writing tools
Technical writing tools
Anil Menon
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
Jonathan Pletzke
1428393873 mhkx3 ln
1428393873 mhkx3 ln
WilfredodelaCernaJr
Tools to help you join the self publishing revolution
Tools to help you join the self publishing revolution
saturdayplace
How to start developing apps for Firefox OS
How to start developing apps for Firefox OS
benko
Bill Kasdorf - Apex Content Solutions - Agile processes, agile publications (...
Bill Kasdorf - Apex Content Solutions - Agile processes, agile publications (...
Erich van Rijn
Intro to mobile web application development
Intro to mobile web application development
zonathen
Content Management for Publishers
Content Management for Publishers
Apex CoVantage

More Related Content

What's hot (14)

Essential Javascript -- A Javascript &lt;b>Tutorial&lt;/b>
Essential Javascript -- A Javascript &lt;b>Tutorial&lt;/b>
tutorialsruby
lect9
lect9
tutorialsruby
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
Html
Html
Peter Kaleta
AJAX Workshop Notes
AJAX Workshop Notes
Pamela Fox
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSS
Timo Herttua
Docing in-and-out: Markdown introduction
Docing in-and-out: Markdown introduction
Allan Sun
Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)
Thinkful
Basics of css and xhtml
Basics of css and xhtml
sagaroceanic11
Easy Blogging With Emacs
Easy Blogging With Emacs
Dashamir Hoxha
html5.ppt
html5.ppt
Niharika Gupta
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
Erin M. Kidwell
Hypertext markup language (html)
Hypertext markup language (html)
Aksa Sahi
05 RD PoSD Tutorial_xhtml_to_html5_2016
05 RD PoSD Tutorial_xhtml_to_html5_2016
Rich Dron
Essential Javascript -- A Javascript &lt;b>Tutorial&lt;/b>
Essential Javascript -- A Javascript &lt;b>Tutorial&lt;/b>
tutorialsruby
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
The beauty behind ebooks: CSS - ebookcraft 2015 - Iris Febres
BookNet Canada
AJAX Workshop Notes
AJAX Workshop Notes
Pamela Fox
Rails Girls - Introduction to HTML & CSS
Rails Girls - Introduction to HTML & CSS
Timo Herttua
Docing in-and-out: Markdown introduction
Docing in-and-out: Markdown introduction
Allan Sun
Code & Design Your First Website (Downtown Los Angeles)
Code & Design Your First Website (Downtown Los Angeles)
Thinkful
Basics of css and xhtml
Basics of css and xhtml
sagaroceanic11
Easy Blogging With Emacs
Easy Blogging With Emacs
Dashamir Hoxha
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
Girl Develop It Cincinnati: Intro to HTML/CSS Class 1
Erin M. Kidwell
Hypertext markup language (html)
Hypertext markup language (html)
Aksa Sahi
05 RD PoSD Tutorial_xhtml_to_html5_2016
05 RD PoSD Tutorial_xhtml_to_html5_2016
Rich Dron

Similar to Oreilly (20)

Technical writing tools
Technical writing tools
Anil Menon
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
Jonathan Pletzke
1428393873 mhkx3 ln
1428393873 mhkx3 ln
WilfredodelaCernaJr
Tools to help you join the self publishing revolution
Tools to help you join the self publishing revolution
saturdayplace
How to start developing apps for Firefox OS
How to start developing apps for Firefox OS
benko
Bill Kasdorf - Apex Content Solutions - Agile processes, agile publications (...
Bill Kasdorf - Apex Content Solutions - Agile processes, agile publications (...
Erich van Rijn
Intro to mobile web application development
Intro to mobile web application development
zonathen
Content Management for Publishers
Content Management for Publishers
Apex CoVantage
Is it time to start using HTML 5
Is it time to start using HTML 5
Ravi Raj
Developer Efficiency
Developer Efficiency
Dmitri Nesteruk
Introduction to HTML5 & CSS3
Introduction to HTML5 & CSS3
g4gauravagarwal
HTML.pptx
HTML.pptx
vikasmittal92
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
Grayzon Gonzales, LPT
Go language presentation
Go language presentation
paramisoft
Tools & Frameworks + Save Nature & Save Animal.pptx
Tools & Frameworks + Save Nature & Save Animal.pptx
Kuldip Pipaliya
Wondershare Filmora 14.3.2 Crack + License Key Free Download
Wondershare Filmora 14.3.2 Crack + License Key Free Download
anglekaan18
2025-03-20 - How to use AI to your advantage - AI-Driven Development.pdf
2025-03-20 - How to use AI to your advantage - AI-Driven Development.pdf
Shereef
AOMEI Backupper Crack 2025 FREE Download
AOMEI Backupper Crack 2025 FREE Download
muhammadwaqaryounus6
Wondershare PDFelement Pro Crack FREE Download
Wondershare PDFelement Pro Crack FREE Download
waqarcracker5
OpenMockup - Presentation apr/2016
OpenMockup - Presentation apr/2016
Xavi Montero
Technical writing tools
Technical writing tools
Anil Menon
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
UNC Chapel Hill 2014 CTC Retreat - Creating epub e books
Jonathan Pletzke
Tools to help you join the self publishing revolution
Tools to help you join the self publishing revolution
saturdayplace
How to start developing apps for Firefox OS
How to start developing apps for Firefox OS
benko
Bill Kasdorf - Apex Content Solutions - Agile processes, agile publications (...
Bill Kasdorf - Apex Content Solutions - Agile processes, agile publications (...
Erich van Rijn
Intro to mobile web application development
Intro to mobile web application development
zonathen
Content Management for Publishers
Content Management for Publishers
Apex CoVantage
Is it time to start using HTML 5
Is it time to start using HTML 5
Ravi Raj
Introduction to HTML5 & CSS3
Introduction to HTML5 & CSS3
g4gauravagarwal
HTML Start Up - Introduction to HTML
HTML Start Up - Introduction to HTML
Grayzon Gonzales, LPT
Go language presentation
Go language presentation
paramisoft
Tools & Frameworks + Save Nature & Save Animal.pptx
Tools & Frameworks + Save Nature & Save Animal.pptx
Kuldip Pipaliya
Wondershare Filmora 14.3.2 Crack + License Key Free Download
Wondershare Filmora 14.3.2 Crack + License Key Free Download
anglekaan18
2025-03-20 - How to use AI to your advantage - AI-Driven Development.pdf
2025-03-20 - How to use AI to your advantage - AI-Driven Development.pdf
Shereef
AOMEI Backupper Crack 2025 FREE Download
AOMEI Backupper Crack 2025 FREE Download
muhammadwaqaryounus6
Wondershare PDFelement Pro Crack FREE Download
Wondershare PDFelement Pro Crack FREE Download
waqarcracker5
OpenMockup - Presentation apr/2016
OpenMockup - Presentation apr/2016
Xavi Montero
Ad

Oreilly