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

Paragraphs


    1  Structure
    2  Example
    3  See also

A new paragraph is specified by using the tag "par". Note that if no paragraph is defined in an article, a default paragraph will be created.

Structure

Every content is always under a paragraphr, thus the following content:
   <article desc="an article">
     <par>
   This is the first paragraph.
     </par>
     A dangling text.
     <par>
   This is the second paragraph.
     </par>
   </article>
Is equivalent to:
   <article desc="an article">
     <par>
   This is the first paragraph.
     </par>
     <par>
   A dangling text.
     </par>        
     <par>
   This is the second paragraph.
     </par>
   </article>

Example

   <article desc="an article">
     <par>
   This is a very simple article.
     </par>
   </article>
will have the same result as:
   <article desc="an article">
   This is a very simple article.
   </article>

See also


Categories: Syntax

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