forked from netcarver/sed_plugin_help_viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-dist.php
24 lines (21 loc) · 855 Bytes
/
config-dist.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php
// Compiler configuration for a Textpattern plugin source file.
//
// Uncomment the 'path' line and add the correct path to the plugin compiler.
//
// Optionally, uncomment the 'helpfile' line and add the relative path to a
// separate help file (e.g., 'README.md').
//
// If you are using a separate help file and it is in Textile or Markdown
// format, uncomment the appropriate 'parser' line. You will have to install
// the parser yourself, per the instructions in the config file for zem_tpl.php.
// (NB: Parsedown is a parser for GitHub-flavoured Markdown.)
// https://github.com/erusev/parsedown
// https://github.com/textile/php-textile
$compiler_cfg = array(
# 'path' => 'path/to/textpattern-plugin-template/zem_tpl.php',
# 'helpfile' => 'README.md',
# 'parser' => 'textile',
# 'parser' => 'parsedown',
);
?>