Changes between Version 1 and Version 2 of IncludePagesPlugin


Ignore:
Timestamp:
Mar 2, 2008, 1:41:01 AM (16 years ago)
Author:
RottenChester
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • IncludePagesPlugin

    v1 v2  
    2525{{{
    2626    [[IncludePages(Foo)]]
     27}}}
     28    The contents of page "Foo" will be included in the page when the plugin is expanded.
     29
     30{{{
    2731    [[IncludePages(Foo,headclass)]]
     32}}}
     33
     34    The contents of page "Foo" will be included in the page.  The title of the page will be included in a header div with the class "headclass", as follows:
     35
     36{{{
     37    <div>
     38      <div id="headclass">Foo</div>
     39        { contents of Foo }
     40    </div>
     41}}}
     42
     43{{{
    2844    [[IncludePages(Foo,headclass,blockclass)]]
     45}}}
     46    Contents of page "Foo" are included in the page with a header div with id headclass, in a div with id blockclass. as follows:
     47
     48{{{
     49    <div id="blockclass">
     50       <div id="headclass">Foo</div>
     51         { contents of Foo }
     52     </div>
     53}}}
     54
    2955}}}
    3056