Skip to content
This repository has been archived by the owner on Oct 2, 2018. It is now read-only.
joshua-s edited this page Oct 16, 2014 · 7 revisions

IMPORTANT: This page is not being maintained anymore, and the proposal is obsolete.

ODML or Open Document Markup Language is a new language based on HTML.

More about content coming soon!

A Sample ODML Document:

<!DOCTYPE odml>
<odml>
  <info>
    <title>Sample ODML Document</title>
    <author>Joshua Smith</author>
    <publisher>Myself</publisher>
    <date>4/22/13</date>
  </info>
  <content>
    ...Some HTML Content...
  </content>
</odml>

Special ODML Tags:

  • <info> - Like the <head> tag in HTML; encloses the info tags.
  • <title> - The title of the document.
  • <author> - The author of the document.
  • <publisher> - The publisher.
  • <date> - The publish date.
  • <website> - The book's website.
  • <meta> - Contains other info.
  • <content> - The document contents. This tag is like HTML's <body> tag.

Note: ODML uses common HTML tags for the document content. Examples: <span>, <br>, <b>...

Clone this wiki locally