summaryrefslogtreecommitdiffhomepage
path: root/asciidoc.html.markdown
diff options
context:
space:
mode:
authorDmitrii Kuznetsov <torgeek@gmail.com>2021-02-22 18:42:33 +0300
committerDmitrii Kuznetsov <torgeek@gmail.com>2021-02-22 18:42:33 +0300
commite09fefaa3e78c645c720c86391e3f96d257be8a9 (patch)
tree0ff8b235e3e707125e2b11d5268ad085832355cb /asciidoc.html.markdown
parentf4c740839d78f797e9cbcfa1eb0483ac0ea45501 (diff)
parentbc8bd2646f068cfb402850f7c0f9b1dbfe81e5a0 (diff)
Merge branch 'master' of https://github.com/torgeek/learnxinyminutes-docs
Diffstat (limited to 'asciidoc.html.markdown')
-rw-r--r--asciidoc.html.markdown18
1 files changed, 14 insertions, 4 deletions
diff --git a/asciidoc.html.markdown b/asciidoc.html.markdown
index 8326c581..51d0d7c9 100644
--- a/asciidoc.html.markdown
+++ b/asciidoc.html.markdown
@@ -2,6 +2,7 @@
language: asciidoc
contributors:
- ["Ryan Mavilia", "http://unoriginality.rocks/"]
+ - ["Abel Salgado Romero", "https://twitter.com/abelsromero"]
filename: asciidoc.md
---
@@ -81,10 +82,6 @@ Section Titles
===== Level 4 <h5>
-====== Level 5 <h6>
-
-======= Level 6 <h7>
-
```
Lists
@@ -120,3 +117,16 @@ You can nest lists by adding extra asterisks or periods up to five times.
.... foo 4
..... foo 5
```
+
+## Further Reading
+
+There are two tools to process AsciiDoc documents:
+
+1. [AsciiDoc](http://asciidoc.org/): original Python implementation available in the main Linux distributions. Stable and currently in maintenance mode.
+2. [Asciidoctor](http://asciidoctor.org/): alternative Ruby implementation, usable also from Java and JavaScript. Under active development, it aims to extend the AsciiDoc syntax with new features and output formats.
+
+Following links are related to `Asciidoctor` implementation:
+
+* [Markdown - AsciiDoc syntax comparison](http://asciidoctor.org/docs/user-manual/#comparison-by-example): side-by-side comparison of common Markdown and AsciiDoc elements.
+* [Getting started](http://asciidoctor.org/docs/#get-started-with-asciidoctor): installation and quick start guides to render simple documents.
+* [Asciidoctor User Manual](http://asciidoctor.org/docs/user-manual/): complete single-document manual with syntax reference, examples, rendering tools, amongst others.