A slide parser for SlideShow action, which by default behaves as the in-built parser, that can be additionally controlled by #pragma processing instructions to give alternative functionality. The simplest change is to set a different heading level to delimit slides allowing for the page to contain with higher level headings to precede the slide content. Additionally, rather than just use headings, the parser can delimit slides based on specified strings (slide tokens) included in the page content. Likewise notes tokens can be specified to indicate notes that are included in the page but not the slides. When slide tokens are used to delimit slides, the slide heading can be (1) a wiki heading (of any level) when it follows the slide token on the next line (and will be displayed in the rendered page), (2) specified in wiki heading format when it follows the slide token on the same line (and not necessarily displayed in the page), or (3) not included.
The parser does not work as a processing instruction or a page section. Attempting to do so generates a warning message.
Processing instructions
- #pragma slides number
- Sets the heading level to delimit slides, with number equal 1 to 5.
- #pragma slides
Sets the default slide token as the slide delimiter. The default token is ##slide, which must appear at the beginning of a line, if you want it to be treated as a comment not rendered in the page.
- #pragma slides on
Same as #pragma slides (described above).
- #pragma slides off
Turns off the division of the page into separate slides, even if slide tokens or level 1 headings are included in the page. However, the page is sitll displayed as a single slide using slideshow.css if the SlideShow action is evoked.
- #pragma slides text
- Sets the slide token to the text provided. This text can include wiki markup and spaces but not line breaks. The token can be a displayable element of the page (unlike the default token when included at the beginning of a line). However, the slide content will begin immediately after the token, so the token inclusion must be considered carefully not to disrupt the wiki markup rendered in the slide.
- #pragma notes
Sets the default notes token as the notes delimiter. The default token is ##notes, which must appear at the beginning of the a line, if you want it to be treated as a comment not rendered in the page.
- #pragma notes on
Same as #pragma notes (described above).
- #pragma notes off
- Turns off the exclusion of note content from the rendered slides.
The processing instructions can appear in any order, but if duplicated the last setting overrides any prior setting.
The parser ignores content escaped by {{{ }}} or ` `, so wiki heading code or slide/notes tokens within these are ignored.