$ tar -xzf asciidoc-8.0.0.tar.gz $ cd asciidoc-8.0.0 $ su # ./install.sh
»Home
»a2x
|
AsciiDoc Installation
The latest AsciiDoc downloads can be found on the AsciiDoc website http://www.methods.co.nz/asciidoc/downloads.html and at the SourceForge http://sourceforge.net/projects/asciidoc/): Prepackaged AsciiDoc installationThe AsciiDoc downloads page lists AsciiDoc packages for various Linux distributions. Distribution tarball installationIf your Linux distribution is not supported, you use some other *NIX platform or you prefer to install from source you can use the install.sh shell script in the tarball root directory (thanks to Jacob Mandelson for writing this script). install.sh installs AsciiDoc executables, configuration files and man pages in the usual locations. Here's how: $ tar -xzf asciidoc-8.0.0.tar.gz $ cd asciidoc-8.0.0 $ su # ./install.sh
Microsoft Windows installationTo install the zip formatted distribution just unzip the contents to a new folder: $ mkdir asciidoc $ cd asciidoc $ unzip ../asciidoc-8.0.0.zip Testing your installationTest out asciidoc by changing to the AsciiDoc application directory and convert the User Guide document (./doc/asciidoc.txt) to XHTML (./doc/asciidoc.html): $ asciidoc doc/asciidoc.txt
|