emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* ePub construction
@ 2011-12-13 22:45 Alan L Tyree
  2011-12-14  1:42 ` Nick Dokos
  2011-12-14 23:24 ` suvayu ali
  0 siblings, 2 replies; 7+ messages in thread
From: Alan L Tyree @ 2011-12-13 22:45 UTC (permalink / raw)
  To: emacs-orgmode

G'day,

Here are the modifications that I needed to make to the exported html 
file (using the standard exporter) in order to get a valid ePub 
document. http://threepress.org/document/epub-validate provides an 
on-line validation service.

My document is relatively simple, but does have footnotes, citations 
and formatting commands.

I will be happy to add a fuller description to worg if someone will 
point me to some instructions.


1. Make the html file have utf-8 encoding; there are probably several 
ways to do this, but I used the emacs23 menu MULE options on the org 
document.

2 Change the language statement by removing the "lang=" attribute:

From: <html xmlns="http://www.w3.org/1999/xhtml" lang="en" 
xml:lang="en">

To: <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">

3 Change anchor descriptions associated with section headings by
   removing "name=" entries, for example,

From: <a name="sec-1" id="sec-1"></a>

To: <a id="sec-1"></a>

NOTE: this can now be done by customising org-export-html-headline-
anchor-format (Thanks Bastien!!)

4. Change anchor class="footref" by replacing "name=" with "id=". For
   example:

from: <a class="footref" name="fnr.2" href="#fn.2">

to: <a class="footref" id="fnr.2" href="#fn.2">

5. Change anchor class="footnum" by replacing "name=" with "id=". For
   example:

from: <a class="footnum" name="fn.1" href="#fnr.1">1</a>

to: <a class="footnum" id="fn.1" href="#fnr.1">1</a>

Cheers,
Alan


-- 
Alan L Tyree                    http://www2.austlii.edu.au/~alan
Tel:  04 2748 6206		sip:172385@iptel.org

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2011-12-14 23:55 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-12-13 22:45 ePub construction Alan L Tyree
2011-12-14  1:42 ` Nick Dokos
2011-12-14  3:14   ` Alan L Tyree
2011-12-14  8:53     ` Olaf Dietsche
2011-12-14 13:58       ` Nick Dokos
2011-12-14 23:24 ` suvayu ali
2011-12-14 23:56   ` Alan L Tyree

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).