Em is a limited hypertext markup language.
It is similar to Markdown, but it has a few key advantages:
Em takes plain-text readability seriously. You should be able to write em in a plain-text e-mail message without the recipient noticing. On the other hand, that means that it is limited in terms of what HTML it can produce. Most noticeably, only a very limited form of inline links are supported (see Lists and Inline formatting).
For examples, see the source code for this text (link) or the test file (link).
Em is implemented in portable awk, with an rc script to bind it together. The rc script can (more or less) trivially be translated to POSIX shell, but the work has not been done yet.
Em's complete and exact syntax is defined by its implementation (link), but a general description follows below.
Italic, bold and teletype text is marked with the asterisk, the underscore and the backtick, respectively:
Example of *italic text*, _bold text_ and `teletype text`.
The marks are only valid in certain positions:
Inline references are created with square brackets:
Example of an inline reference [1]. [1] The quick brown fox ...
For more information about references, see Reference lists below.
Hyperlinks are a special case of inline references. When an inline reference refers to a reference containing only a web address, the inline reference is replaced with a hyperlink to that address.
It is available for download [a]. [a] v1.tgz
The above example translates to the following HTML:
<p>It is available for download (<a href="v1.tgz">link</a>). </p>
The default link text ("link") can be changed by setting the linktext environment variable.
Headings begin and end with the same number of equal signs:
= First-level heading = == Second-level heading ==
_All lists start with a single space_, followed by some marker.
Unordered lists are created with - :
- This is an unordered list - With two items
Ordered lists are created with n. : 1. This is an ordered list 2. With an item that spans two lines
Definition lists are created with term: :
dinosaur: an animal
Reference lists are created with [n]. :
[1] This is a reference list [2] With two items
Unordered and ordered lists can be nested. An additional space at the beginning of the line increases the item level by one:
1. First level - Second level 2. First level
A reference list is a special type of list. It is a type of footnote list, to which you can make inline references:
See footnote [1]. [1] The quick brown fox ...
Note: There is a special type of reference list item called a hyperlink reference. It contains only a single word, without whitespace:
[1] http://example.com
Hyperlink reference items are removed in the final output, but you can still reference them inline:
You can download the file here [1].
_Preformatted blocks start with a single tab:_
#include <stdio.h> main() { puts("Hello world!\n"); }
_Paragraphs start with no space:_
This is a paragraph with two lines.
This is another paragraph.