Changes between Version 11 and Version 12 of FoldMacroProcessorMacro


Ignore:
Timestamp:
Sep 21, 2016, 7:41:04 PM (8 years ago)
Author:
figaro
Comment:

Moved example to functional description

Legend:

Unmodified
Added
Removed
Modified
  • FoldMacroProcessorMacro

    v11 v12  
    11[[PageOutline(2-5,Contents,pullout)]]
    22
    3 = Foldable section macro
     3= Add foldable sections
    44
    55== Description
    66
    7 This macro is a simple way to get foldable sections that the user can click to expand or collapse.
     7This macro is a simple way to add foldable sections in Trac wiki pages and tickets that the user can click to expand or collapse.
     8
     9{{{
     10{{{#!Fold title="A title for the folded section" tag=h2
     11This section of the wiki page is folded up and can be expanded by clicking on the title.
     12
     13This can contain any ''formatted'' **wiki** content, including macros and nested Fold sections.
     14}}}
     15}}}
     16
     17The following parameters can be set:
     18 * `title`: The text in the folding header.
     19 * `tag`: The HTML element used for the title (Default: span)
    820
    921See also: CollapsiblePlugin
     
    2739You can check out FoldMacroProcessorMacro from [/svn/foldmacroprocessormacro here] using Subversion, or [source:foldmacroprocessormacro browse the source] with Trac.
    2840
    29 == Configuration
     41== Installation
    3042
    31 The following parameters can be set:
    32 
    33 * `title`: The text in the folding header.
    34 * `tag`: The HTML element used for the title (Default: span)
    35 
    36 == Example
    37 
    38 {{{
    39 {{{#!Fold title="A title for the folded section" tag=h2
    40 This section of the wiki page is folded up and can be expanded by clicking on the title.
    41 
    42 This can contain any ''formatted'' **wiki** content, including macros and nested Fold sections.
    43 }}}
    44 }}}
     43General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page.
    4544
    4645== Recent Changes