Change - Markdown vs. reStructuredText

Created on Sept. 3, 2012, 8:15 p.m. by Hevok & updated on Oct. 27, 2012, 12:36 p.m. by Hevok

Denigma supports multiple markup language including the two big ones Markdown and reStructuredText. ¶

Markdown is easier to use and often preferred when the purpose is si
mply to generate HTML. In contrast, reStructuredText is more extensible and powerful, with native support for tables and as well as automatic generation of table of contents and interlinking. ¶

Indentation is significant to both M
arkdown and reStructuredText, but in different ways. ¶

Markdown supports nested bold and italics, reST not (so there is no way to represent bold italics)
. ¶

Markdown can be used to format entries: :: ¶

> quoted text ¶
italic text ¶
bold text ¶
code block (multi-line is fine, whitespace is preserved) ¶
link text

Becomes to: ¶

> quoted text ¶
italic text ¶
bold text ¶
code block (multi-line is fine, whitespace is preserved) ¶
link text

<br> ¶
<table> ¶
<tr> ¶
<td> ¶
Markdown: ¶

# Title ¶

## Header ¶
First Paragraph. ¶

Second Paragraph. ¶

### Subheader ¶
First Paragraph ¶

Second Paragraph ¶

#### SubSubheader ¶
First Paragraph ¶

Second Paragraph ¶
</td> ¶
<td> ¶
reStructuredText: ¶

===== ¶
Title ¶
===== ¶

Header ¶
====== ¶
First Paragraph. ¶

Second Paragraph. ¶


Subheader ¶
--------- ¶
First Paragraph. ¶

Second Paragraph. ¶


SubSubheader ¶
~~~~~~~~~~~~ ¶
First Paragraph. ¶

Second Paragraph. ¶
<td> ¶
</tr> ¶
</table> ¶

<br> ¶
<table> ¶
<tr> ¶
<td> ¶
Markdown: ¶

# Title ¶

## Header ¶
First Paragraph. ¶

Second Paragraph. ¶

### Subheader ¶
First Paragraph ¶

Second Paragraph ¶

#### SubSubheader ¶
First Paragraph ¶

Second Paragraph ¶
</td> ¶
<td> ¶
reStructuredText: ¶

===== ¶
Title ¶
===== ¶

Header ¶
====== ¶
First Paragraph. ¶

Second Paragraph. ¶


Subheader ¶
--------- ¶
First Paragraph. ¶

Second Paragraph. ¶


SubSubheader ¶
~~~~~~~~~~~~ ¶

First Paragraph. ¶

Second Paragraph. ¶
<td> ¶
</tr> ¶
</table>


Comment: Updated entry

Comment on This Data Unit