AsciiDoc

From Wikipedia, the free encyclopedia

This is an old revision of this page, as edited by WikiCleanerBot (talk | contribs) at 19:44, 29 January 2021 (v2.04b - Bot T20 CW#61 - Fix errors for CW project (Reference before punctuation)). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.

AsciiDoc
Internet media typetext/asciidoc
Initial release2002; 22 years ago (2002)
Free format?yes
Websiteasciidoc.org Edit this at Wikidata
AsciiDoc
Original author(s)Stuart Rackham
Developer(s)Dan Allen, Michel Krämer, et al.
Initial releaseNovember 25, 2002; 21 years ago (2002-11-25)
Stable release
9.0.4 / October 20, 2020; 3 years ago (2020-10-20)
Repositorygithub.com/asciidoc/asciidoc-py3
Written inPython
Operating systemCross-platform
TypeDocumentation generator
LicenseGPL v2
Websiteasciidoc.org
Asciidoctor
Original author(s)Ryan Waldron
Developer(s)Dan Allen, Sarah White, et al.
Initial releaseJanuary 30, 2013; 11 years ago (2013-01-30)
Stable release
2.0.12 / November 9, 2020; 3 years ago (2020-11-09)
Repositorygithub.com/asciidoctor/asciidoctor
Written inRuby
Operating systemCross-platform
TypeDocumentation generator
LicenseMIT
Websiteasciidoctor.org

AsciiDoc is a human-readable document format, semantically equivalent to DocBook XML, but using plain-text mark-up conventions. AsciiDoc documents can be created using any text editor and read “as-is”, or rendered to HTML or any other format supported by a DocBook tool-chain, i.e. PDF, TeX, Unix manpages, e-books, slide presentations, etc.[1] Common file extensions for AsciiDoc files are txt(as encouraged by AsciiDoc's creator) and adoc.[2][3]

History

AsciiDoc was created in 2002 by Stuart Rackham, who published tools (‘asciidoc’ and ‘a2x’), written in the Python programming language to convert plain-text, ‘human readable’ files to commonly used published document formats.[1]

A Ruby implementation called ‘Asciidoctor’, released in 2013, is in use by GitHub[4] and GitLab.[5] This implementation is also available in the Java ecosystem using JRuby and in the JavaScript ecosystem using Opal.js.

Some of O'Reilly Media's books and e-books are authored using AsciiDoc mark-up.[6]

Most of the Git project documentation is written in AsciiDoc.[7]

The Asciidoc format is currently under standardization procedure by the Eclipse Foundation.[8][9]

Example

The following shows text using AsciiDoc mark-up, and a rendering similar to that produced by an AsciiDoc processor:

Asciidoc source text
= My Article
J. Smith

https://wikipedia.org[Wikipedia] is an
on-line encyclopaedia, available in
English and *many* other languages.

== Software

You can install 'package-name' using
the `gem` command:

 gem install package-name

== Hardware

Metals commonly used include:

* copper
* tin
* lead
HTML-rendered result
My Article

J. Smith

Wikipedia is an on-line encyclopaedia, available in English and many other languages.

Software

You can install package-name using the gem command:

gem install package-name
Hardware

Metals commonly used include:

  • copper
  • tin
  • lead

Tools

  • Antora - a multi-repository documentation site generator for tech writers using git.
  • AsciiBinder - (deprecated) a documentation system built on Asciidoctor for people who have a lot of docs to maintain and republish on a regular basis.
  • awestruct - a static site generator inspired by Jekyll.
  • Asciidoc FX - Asciidoc Book Editor based on JavaFX 8.
  • AsciiDocLIVE - AsciiDocLIVE is a free online AsciiDoc editor.

See also

References

  1. ^ a b "AsciiDoc".
  2. ^ "AsciiDoc Frequently Asked Questions". asciidoc.org. Retrieved 2020-03-20.
  3. ^ "AsciiDoc Recommended Practices | Asciidoctor". asciidoctor.org. Retrieved 2020-03-20.
  4. ^ "AsciiDoc, powered by Asciidoctor, returns to GitHub and its 5+ million repositories".
  5. ^ "Asciidoc". GitLab User Docs. Retrieved 6 Feb 2020.{{cite web}}: CS1 maint: url-status (link)
  6. ^ "AsciiDoc 101 (chapter 4 of Getting Started with Atlas)". Author Welcome Kit. O'Reilly Media. Archived from the original on 14 October 2017. Retrieved 19 May 2016.
  7. ^ "Git wiki". Git SCM.
  8. ^ "Asciidoc Language".
  9. ^ "AsciiDoc Working Group Charter".

External links