Home
Categories
Dictionary
Download
Project Details
Changes Log
What Links Here
How To
Syntax
FAQ
License

Wiki source tree


    1  Overview
    2  Example
    3  See also

The wiki source tree is the in-memory representation of the parsing of the wiki source content before the wiki output generation.

Overview

The docJGenerator tool:
  • Parses the wiki source content, which can be in XML format, mediawiki markup, or markdown markup
  • Produces an in-memory representation of all articles and their content, called the wiki source tree
  • Generates the wiki output, using this source tree
The wiki source tree is independant from the input format used to specify articles, and also from the type of wiki output.

Example

Suppose the following article content:
   The introductory text
   <title title="the title" />
   paragraph content with <code>theCode</code>.
It will have the following wiki source tree:
  • The default starting paragraph (it is the default paragraph at the start of the article because no paragraph is defined).
    • The "The introductory text" sentence
    • A title
    • The "paragraph content with " sentence
    • The "theCode" code

See also


Categories: general

docJGenerator Copyright (c) 2016-2023 Herve Girod. All rights reserved.