Sophie

Sophie

distrib > Fedora > 14 > x86_64 > by-pkgid > 0c687a8fe44c1293cc128d761b16c12b > files > 15

asciidoc-8.4.5-5.fc14.noarch.rpm

# AsciiDoc help file.
#
# INI section format, each section contains a topic.
# Displayed with 'asciidoc --help sectionname' command.
#

#
# Default help topic.
#
[default]

Man page:     asciidoc --help manpage
Syntax:       asciidoc --help syntax

[manpage]


NAME

   asciidoc - converts an AsciiDoc text file to DocBook, HTML or LinuxDoc

SYNOPSIS

   asciidoc [OPTIONS] FILE

DESCRIPTION

   The asciidoc(1) command translates the AsciiDoc text file FILE to a
   DocBook, HTML or LinuxDoc file. If FILE is - then the standard input is
   used.

OPTIONS

   -a, --attribute=ATTRIBUTE
          Define or delete document attribute. ATTRIBUTE is formatted like
          NAME=VALUE. Command-line attributes take precedence over
          document and configuration file attributes. Alternate acceptable
          forms are NAME (the VALUE defaults to an empty string); NAME!
          (delete the NAME attribute); NAME@ (do not override document or
          configuration file attributes). Values containing spaces should
          be enclosed in double-quote characters. This option may be
          specified more than once.

   -b, --backend=BACKEND
          Backend output file format: docbook, xhtml11 or html4. Defaults
          to xhtml11.

   -f, --conf-file=CONF_FILE
          Use configuration file CONF_FILE.Configuration files processed
          in command-line order (after implicit configuration files). This
          option may be specified more than once.

   --doctest
          Run Python doctests in asciidoc module.

   -d, --doctype=DOCTYPE
          Document type: article, manpage or book. The book document type
          is only supported by the docbook backend. Default document type
          is article.

   -c, --dump-conf
          Dump configuration to stdout.

   -h, --help[=TOPIC]
          Print help TOPIC. --help=topics will print a list of help
          topics, --help=syntax summarizes AsciiDoc syntax, --help=manpage
          prints the AsciiDoc manpage.

   -e, --no-conf
          Exclude implicitly loaded configuration files except for those
          named like the input file (infile.conf and infile-backend.conf).

   -s, --no-header-footer
          Suppress document header and footer output.

   -o, --out-file=OUT_FILE
          Write output to file OUT_FILE. Defaults to the base name of
          input file with backend extension. If the input is stdin then
          the outfile defaults to stdout. If OUT_FILE is - then the
          standard output is used.

   -n, --section-numbers
          Auto-number HTML article section titles. Synonym for -a
          numbered.

   --unsafe
          Disable safe mode. Safe mode is enabled by default, disabling it
          is potentially dangerous.

   -v, --verbose
          Verbosely print processing information and configuration file
          checks to stderr.

   --version
          Print program version number.

EXIT STATUS

   0
          Success

   1
          Failure (syntax or usage error; configuration error; document
          processing failure; unexpected error).

BUGS

   See the AsciiDoc distribution BUGS file.

AUTHOR

   Written by Stuart Rackham, <srackham@gmail.com>

RESOURCES

   SourceForge: http://sourceforge.net/projects/asciidoc/

   Main web site: http://www.methods.co.nz/asciidoc/

COPYING

   Copyright (C) 2002-2009 Stuart Rackham. Free use of this software is
   granted under the terms of the GNU General Public License (GPL).

[syntax]

AsciiDoc Markup Syntax Summary
==============================

A summary of the most commonly used markup to jog the memory.
For a complete reference see the 'AsciiDoc User Guide'.

Text formatting
---------------
  *bold text*                 (boldface font)
  _emphasized text_           (normally italics)
  'emphasized text'
  +monospaced text+           (proportional font)
  `monospaced text`           (inline literal passthrough)

Document links
--------------
  [[id]]                      (define link target)
  <<id,caption>>              (link to target id)
  link:filename#id[caption]   (link to external HTML file)

URLs
----
  Use normal URL and email addess syntax or:

  http:address[caption]       (link to web page)
  mailto:address[caption]     (link to mail recipient)

Images
------
  image:filename[caption]     (inline image)
  image::filename[caption]    (block image)

Document header
---------------

  The Document Title
  ==================
  author <email>
  revision, date

author, email, revision and date are optional.

Section title underlines
------------------------
  Underlined:

  Level 0                     (document title)
  =======
  Level 1
  -------
  Level 2
  ~~~~~~~
  Level 3
  ^^^^^^^
  Level 4                     (bottom level)
  +++++++

  Single line:

  = Level 0 =                 (document title) 
  == Level 1 ==
  === Level 2 ===
  ==== Level 3 ====
  ===== Level 4 =====         (bottom level)

Paragraphs
----------
A normal paragraph.           (styles: verse,NOTE,TIP,WARNING)
                                       IMPORTANT,CAUTION)
  An indented literal
  paragraph.

Delimited blocks
----------------
Delimiters must begin at left margin.

  -------------------         (styles: source,music,graphviz)
  listing block
  -------------------

  ...................         (styles: listing)
  literal block
  ...................

  *******************         (styles: abstract)
  sidebar block
  *******************

  [style, author, cite]
  ___________________         (styles: quote,verse)
  quote block
  ___________________

  ===================         (styles: NOTE,TIP,WARNING,
  example block                        IMPORTANT,CAUTION)
  ===================

  ///////////////////
  comment block
  ///////////////////

  +++++++++++++++++++         (styles: pass)
  passthrough block
  +++++++++++++++++++

More block elements
-------------------
  [attributes list]
  .Block title
  // Comment line
  include::filename[]

Tables
------
  .An example table
  [width="40%",cols="^,2m",frame="topbot",options="header,footer"]
  |======================
  |Column 1 |Column 2
  |1        |Item 1
  |2        |Item 2
  |3        |Item 3
  |6        |Three items
  |======================

  Common attributes:

  grid:    none,cols,rows,all
  frame:   topbot,none,sides,all
  options: header,footer
  format:  psv,csv,dsv
  valign:  top,bottom,middle
  width:   1%..100%
  cols:    colspec[,colspec,...]

  colspec:    [multiplier*][align][width][style]
  multiplier: 1...
  width:      1... or 1%...100%
  align:      [horiz][.vert]
               horiz: < (left), ^ (center), > (right)
               vert:  < (top),  ^ (middle), > (bottom)
  style:      d[efault], e[mphasis], m[onospaced], a[sciidoc],
              s[trong], l[iteral], v[erse]
  cell:       [cellspec]|data
  cellspec:   [span*|+][align][style]
  span:       [colspan][.rowspan]
               colspan: 1...
               rowspan: 1...

Bulleted lists
--------------
  - item text
  * item text
  ** item text
  *** item text
  **** item text
  ***** item text

  (styles: callout,bibliography)

Numbered lists
--------------
  1. arabic (decimal) numbering
  a. loweralpha numbering
  F. upperalpha numbering
  iii) lowerroman numbering
  IX) upperroman numbering

  . arabic (decimal) numbering
  .. loweralpha numbering
  ... lowerroman numbering
  .... upperalpha numbering
  ..... upperroman numbering

  (styles: arabic,loweralpha,upperalpha,lowerroman,upperroman)

Labeled lists
-------------
  label:: item text
  label;; item text
  label::: item text
  label:::: item text

  (styles: horizontal,vertical,glossary,qanda)

More inline elements
--------------------
  footnote:[footnote text]    (document footnote)