blob: 0364c999c19aec143a2b06ad99d279f52c914754 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
{strip}
{if $formatplugins}
{jstab title="Format Help"}
<h4>{tr}Syntax and input format help{/tr}</h4>
{foreach from=$formatplugins item=p}
<h5>{if !empty($p.format_help)}<a href="#{$p.plugin_guid}">{/if}{$p.edit_label} Help{if !empty($p.format_help)}</a>{/if}</h5>
{$p.description} {if $p.help_page}{tr}To view syntax help, please visit {jspopup href="https://www.bitweaver.org/wiki/index.php?page=`$p.help_page`" title=$p.help_page class=external}.{/tr}{/if}
{/foreach}
{foreach from=$formatplugins item=p}
{if !empty($p.format_help)}
{include file=$p.format_help}
{/if}
{/foreach}
{/jstab}
{/if}
{/strip}
|