Astuces de composition
- Les adresses de pages web et de messagerie électronique sont transformées en liens automatiquement.
- Les lignes et les paragraphes sont reconnus automatiquement. Les balises <br /> saut de ligne, <p> paragraphe et </p> fin de paragraphe sont insérées automatiquement.Si les paragraphes ne sont pas reconnus ajoutez simplement quelques lignes vides.
- You can insert footnotes directly into texts with
[fn]This text becomes a footnote.[/fn]
. This will be replaced with a running number (the footnote reference) and the text within the [fn] tags will be moved to the bottom of the page (the footnote). - You can insert footnotes directly into texts with [# ...]. This will be replaced with a running number (the footnote reference) and the text within the [# ...] tags will be moved to the bottom of the page (the footnote). This filter outputs footnotes in Textile format. You should use it together and before the Textile filter.
- Web page addresses and e-mail addresses turn into links automatically. (Better URL filter.)
- Insert view filter allows to embed views using tags. The tag syntax is relatively simple: [view:name=display=args]
- For example [view:tracker=page=1] says, embed a view named "tracker", use the "page" display, and supply the argument "1".
- The display and args parameters can be omitted. If the display is left empty, the view's default display is used.
- Multiple arguments are separated with slash. The args format is the same as used in the URL (or view preview screen).
- [view:my_view]
- [view:my_view=my_display]
- [view:my_view=my_display=arg1/arg2/arg3]
- [view:my_view==arg1/arg2/arg3]
To add a lightbox to your images, add rel="lightbox" attribute to any link tag to activate the lightbox. For example:
<a href="image-1.jpg" rel="lightbox">image #1</a>
<a href="image-1.jpg" rel="lightbox[][my caption]">image #1</a>
To show a caption either use the title attribute or put in the second set of square brackets of the rel attribute.
If you have a set of related images that you would like to group, then you will need to include a group name between square brackets in the rel attribute. For example:
<a href="image-1.jpg" rel="lightbox[roadtrip]">image #1</a>
<a href="image-2.jpg" rel="lightbox[roadtrip][caption 2]">image #2</a>
<a href="image-3.jpg" rel="lightbox[roadtrip][caption 3]">image #3</a>
There are no limits to the number of image sets per page or how many images are allowed in each set.
If you wish to turn the caption into a link, format your caption in the following way:
<a href="image-1.jpg" rel='lightbox[][<a href="http://www.yourlink.com">View Image Details</a>]' >image #1</a>
- Every instance of "[toc ...]" in the input text will be replaced with a collapsible mediawiki-style table of contents. Accepts options for title, list style, minimum heading level, and maximum heading level, and attachments as follows: [toc list: ol; title: Table of Contents; minlevel: 2; maxlevel: 3; attachments: yes;]. All arguments are optional.