1<?php
2
3# Default configuration for iCalendar Dokuwiki Plugin
4
5# Date format that is used to display the from and to values
6# If you leave this empty '', then the default dformat from /conf/dokuwiki.php will be used.
7$conf['dformat'] = 'd F Y';
8$conf['tformat'] = 'h:ia';
9
10// showAs=default
11$conf['default'] = '
12{datetime} **{title}**\\\\
13{description}\\\\
14{location}\\\\
15{more}';
16
17$conf['table'] = $conf['default'];
18$conf['short'] = $conf['default'];
19
20/*'
21^ [[{image_large}|{{  {image}?100&nolink}}]] | {title}  | ** {datetime} **  | {location}  | {description} \\\\ {more}  |';
22
23$conf['short'] = '
24^ [[{image_large}|{{  {image}?100&nolink}}]] | {title}  | ** {datetime} **  | {location}  | {description} \\\\ {more}  |';
25*/
26
27?>