[
  header ["features" ]
  block [
    itemized [
      item ["captions and paragraphs" ]
      item ["bulleted lists,  can be nested" ]
      item ["numbered lists,  can be nested" ]
      item ["definition lists (" 
        code ["term -- definition" ]")" ]
      item ["quotations (" 
        code [{"quote" -- source} ]" )" ]
      item ["inline formatting" ]
      itemized [
        item [
          strong ["*strong*" ]" " 
          emph ["/emph/" ]" " 
          underlined ["_underlined_" ]" " 
          code [{^A39;^A39;code^A39;^A39;} ]
        ]
        item ["urls " 
          code ["[link>>http://plain.at/]" ]" is translated to a hyperlink: " 
          link [
            label ["link" ]
            target ["http://plain.at/" ]
          ]"^A60;br /^A62; the label " 
          code ["'link'" ]" is optional" ]
      ]
      item [{general-purpose escaping with a backslash before the character to escape (} 
        code [{^A92;^A91;^A93;} ]")" ]
      item [{. as pseudo paragraph to force indentation levels and to prevent single lines from becoming undesired captions (. is always a } 
        code [{('para "")} ]" node)" ]
      item ["comments (hash sign in column 0) for " 
        code ["'# vim: ts:3'" ]" etc" ]
      item ["multi-line comments with " 
        code ["#=ignore" ]", " 
        code ["#=end" ]
      ]
      item ["multi-line pass-through with " 
        code ["#=preserve" ]", " 
        code ["#=end" ]
      ]
      item [{horizontal rules with lines consisting of dashes only} ]
      item ["figures" ]
      itemized [
        item ["with syntax dependant (pluggable) formatting and" ]
        item ["automatic numbering and" ]
        item ["an optional caption" ]
      ]
      item ["source code, as figure with the default type" ]
    ]
    figure [
      title ["Simple C Program" ]
      verbatim [{
#include <stdio.h>
#define S "Hello, World^A110;"

int main(int argc, char **argv)
{
  exit(printf(S) == strlen(S) ? 0 : 1);
}
} ]
    ]
    itemized [
      item ["images, as figure with #type:image" ]
    ]
    figure [
      title ["Ginko Biloba" ]
      image ["../biloba.jpg" ]
    ]
  ]
  rule [none ]
  preserve [{Image taken from<br />
Albion College, Image Gallery<br />
Ginkgo Biloba L.<br />
Photo by: Tamara Crupi, September 1996<br />
URL: <a href="http://www.albion.edu/newplants/detail.asp?imagenumber=6">www.albion.edu/newplants/detail.asp?imagenumber=6</a>} ]
]