Changes between Version 11 and Version 12 of FoldMacroProcessorMacro
- Timestamp:
- Sep 21, 2016, 7:41:04 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
FoldMacroProcessorMacro
v11 v12 1 1 [[PageOutline(2-5,Contents,pullout)]] 2 2 3 = Foldable section macro3 = Add foldable sections 4 4 5 5 == Description 6 6 7 This macro is a simple way to get foldable sections that the user can click to expand or collapse. 7 This 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 11 This section of the wiki page is folded up and can be expanded by clicking on the title. 12 13 This can contain any ''formatted'' **wiki** content, including macros and nested Fold sections. 14 }}} 15 }}} 16 17 The following parameters can be set: 18 * `title`: The text in the folding header. 19 * `tag`: The HTML element used for the title (Default: span) 8 20 9 21 See also: CollapsiblePlugin … … 27 39 You can check out FoldMacroProcessorMacro from [/svn/foldmacroprocessormacro here] using Subversion, or [source:foldmacroprocessormacro browse the source] with Trac. 28 40 29 == Configuration41 == Installation 30 42 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 }}} 43 General instructions on installing Trac plugins can be found on the [TracPlugins#InstallingaTracplugin TracPlugins] page. 45 44 46 45 == Recent Changes