diff options
author | Ludovic Courtès | 2008-01-29 17:52:44 +0100 |
---|---|---|
committer | Ludovic Courtès | 2008-01-29 17:52:44 +0100 |
commit | bda408c218cad42b482981213de79e3382df87b6 (patch) | |
tree | 8c1b09217724d4edb19a3e1369355f9c73e980eb /doc/user/src | |
parent | 54936ba52223f0e1e92c8e7aa393be904299e28a (diff) | |
download | skribilo-bda408c218cad42b482981213de79e3382df87b6.tar.gz skribilo-bda408c218cad42b482981213de79e3382df87b6.tar.lz skribilo-bda408c218cad42b482981213de79e3382df87b6.zip |
doc: Document the `outline' reader.
* doc/user/Makefile.am (EXTRA_DIST): Add `src/outline.txt' and
`loute.skb'.
* doc/user/compiler.skb: Add ref to `outline-syntax'.
* doc/user/syntax.skb: Re-structure, add `outline-syntax' section.
* doc/user/user.skb: Use `(skribilo reader)' and `(ice-9 pretty-print)'.
Diffstat (limited to 'doc/user/src')
-rw-r--r-- | doc/user/src/outline.txt | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/doc/user/src/outline.txt b/doc/user/src/outline.txt new file mode 100644 index 0000000..a89a2d0 --- /dev/null +++ b/doc/user/src/outline.txt @@ -0,0 +1,59 @@ +-*- mode: outline; coding: latin-1; -*- + +Title: Demonstrating Skribilo's Outline Syntax +Author: Ludovic Courtès +Keywords: Skribilo outline Emacs + +This document aims to *demonstrate* +[[http://skribilo.nongnu.org/][Skribilo]]'s outline syntax. + + +* The First Chapter + +The first chapter contains a couple of sections. +They look as though they had been introduced with +the `section' markup of the Skribe syntax. + +** The First Section + +This section is pretty much empty. + +** The Second Section + +This section introduces lists. + +*** Bullet Lists + +This section contains a wonderful `itemize'-style bullet list: + + - the first item; + + - the second item; + + - the last one, which spans + two lines of text. + + +And that's it. Note that list items had to be +separated by empty lines. + +*** Enumerations + +This section shows an `enumerate'-style list: + + 1. The first item; + + 2. The second one; + + 3. The last one. + + +Note that list items are numbered this time. + + +* The Second Chapter + +The second chapter does _not_ add anything useful. + +Text like this that starts after an empty line is +put into a new paragraph. |