Changes between Version 11 and Version 12 of SlideShowPlugin
- Timestamp:
- Aug 24, 2018, 6:07:32 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SlideShowPlugin
v11 v12 10 10 11 11 A top-level level 1 heading (`= Heading =`) and its following section will be converted into the title page of the slideshow, with following level 2 headings and their corresponding sections converted into subsequent slides. 12 13 This page documents the `0.11`/`0.12`/`1.0` version of the plugin. For the `0.10` version documentation, see [wiki:SlideShowPlugin/0.10].14 12 15 13 === Themes … … 25 23 26 24 Themes can be selected from the macro with: `[[SlideShow(theme=<theme>)]]`. 25 26 === Example 27 28 {{{#!html 29 <pre class="code"><div style="background: #ddf"> 30 = Slideshow Title = 31 32 Title page content. 33 34 </div><div style="background: #fdd"> 35 == Slide 1 Title == 36 37 Slide 1 content. 38 39 </div><div style="background: #dfd"> 40 == Slide 2 Title == 41 42 Slide 2 content. 43 44 </div></pre> 45 }}} 46 47 Of which the first page will show as follows: 48 49 [[Image(title.png)]] 27 50 28 51 == Bugs/Feature Requests … … 46 69 == Installation 47 70 48 1. Install 49 * By hand: 50 1. .... 51 * Using easy_install: 71 1. Install using easy_install: 52 72 {{{#!sh 53 73 [sudo] easy_install https://trac-hacks.org/svn/slideshowplugin/0.11 54 74 }}} 55 *`sudo` is optional in case you already have authorisation to modify your server.75 `sudo` is optional in case you already have authorisation to modify your server. 56 76 1. Restart your web server; example command line for Apache on Ubuntu: 57 77 {{{#!sh … … 92 112 Note that one of the themes is named ''default'' and if the `default_theme` option is unspecified, then `default_theme = default` is used. 93 113 94 == Example95 96 {{{#!html97 <pre class="code"><div style="background: #ddf">98 = Slideshow Title =99 100 Title page content.101 102 </div><div style="background: #fdd">103 == Slide 1 Title ==104 105 Slide 1 content.106 107 </div><div style="background: #dfd">108 == Slide 2 Title ==109 110 Slide 2 content.111 112 </div></pre>113 }}}114 115 This has the following effect:116 117 [[Image(title.png)]]118 119 114 == Recent Changes 120 115