-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add: native reStructuredText support
test: added AsciiDoc and reStructuredText tests
- Loading branch information
Showing
9 changed files
with
165 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
= Document Title (Level 0) | ||
|
||
== Level 1 Section Title | ||
|
||
= Level 0 Section Title (Part) | ||
|
||
== Level 1 Section Title | ||
|
||
=== Level 2 Section Title | ||
|
||
==== Level 3 Section Title | ||
|
||
===== Level 4 Section Title | ||
|
||
====== Level 5 Section Title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
******* | ||
Chapter | ||
******* | ||
|
||
Section | ||
======= | ||
|
||
---------- | ||
Subsection | ||
---------- | ||
^^^^^^^^^^^^^^ | ||
Subsubsections | ||
^^^^^^^^^^^^^^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// ┌───────────────────────────────────────────────────────────────┐ | ||
// │ Contents of asciidoc_simple.adoc │ | ||
// ├───────────────────────────────────────────────────────────────┘ | ||
// │ | ||
// ├──┐Document Title (Level 0) | ||
// │ └── Level 1 Section Title | ||
// ├──┐Level 0 Section Title (Part) | ||
// │ └──┐Level 1 Section Title | ||
// │ └──┐Level 2 Section Title | ||
// │ └──┐Level 3 Section Title | ||
// │ └──┐Level 4 Section Title | ||
// │ └── Level 5 Section Title | ||
// │ | ||
// └─────────────────────────────────────────────────────────────── | ||
|
||
= Document Title (Level 0) | ||
|
||
== Level 1 Section Title | ||
|
||
= Level 0 Section Title (Part) | ||
|
||
== Level 1 Section Title | ||
|
||
=== Level 2 Section Title | ||
|
||
==== Level 3 Section Title | ||
|
||
===== Level 4 Section Title | ||
|
||
====== Level 5 Section Title |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
.. ┌───────────────────────────────────────────────────────────────┐ | ||
.. │ Contents of restructuredtext_simple.rst │ | ||
.. ├───────────────────────────────────────────────────────────────┘ | ||
.. │ | ||
.. │ └──┐Chapter | ||
.. │ └──┐Section | ||
.. │ └──┐Subsection | ||
.. │ └── Subsubsections | ||
.. │ | ||
.. └─────────────────────────────────────────────────────────────── | ||
******* | ||
Chapter | ||
******* | ||
|
||
Section | ||
======= | ||
|
||
---------- | ||
Subsection | ||
---------- | ||
^^^^^^^^^^^^^^ | ||
Subsubsections | ||
^^^^^^^^^^^^^^ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env python | ||
|
||
__version__ = "2.4.0" | ||
__version__ = "2.5.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters