mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-01 15:26:12 +00:00
67 lines
2.1 KiB
PHP
Executable File
67 lines
2.1 KiB
PHP
Executable File
<?php if (!defined('PmWiki')) exit();
|
|
/* Copyright 2007-2014 Patrick R. Michaud (pmichaud@pobox.com)
|
|
This file is part of PmWiki; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published
|
|
by the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version. See pmwiki.php for full details.
|
|
|
|
This script adds Creole v0.4 markup (http://www.wikicreole.org/)
|
|
to PmWiki. To activate this script, simply add the following into
|
|
a local customization file:
|
|
|
|
include_once('scripts/creole.php');
|
|
|
|
*/
|
|
|
|
## **strong**
|
|
Markup('**', 'inline',
|
|
'/^\\*\\*(?>(.+?)\\*\\*)(?!\\S)|(?<!^)\\*\\*(.+?)\\*\\*/',
|
|
'<strong>$1$2</strong>');
|
|
|
|
## //emphasized//
|
|
Markup('//', 'inline',
|
|
'/(?<!http:|https:|ftp:)\\/\\/(.*?)\\/\\//',
|
|
'<em>$1</em>');
|
|
|
|
## == Headings ==
|
|
Markup_e('^=', 'block',
|
|
'/^(={1,6})\\s?(.*?)(\\s*=*\\s*)$/',
|
|
"'<:block,1><h'.strlen(\$m[1]).'>'.\$m[2].'</h'.strlen(\$m[1]).'>'");
|
|
|
|
## Line breaks
|
|
Markup('\\\\', 'inline', '/\\\\\\\\/', '<br />');
|
|
|
|
## Preformatted
|
|
Markup_e('^{{{', '[=',
|
|
"/^\\{\\{\\{\n(.*?\n)\\}\\}\\}[^\\S\n]*\n/sm",
|
|
"Keep('<pre class=\"escaped\">'.\$m[1].'</pre>')");
|
|
Markup_e('{{{', '>{{{',
|
|
'/\\{\\{\\{(.*?)\\}\\}\\}/s',
|
|
"Keep('<code class=\"escaped\">'.\$m[1].'</code>')");
|
|
|
|
## Tables
|
|
Markup_e('|-table', '>^||',
|
|
'/^\\|(.*)$/',
|
|
"FormatTableRow(\$m[0], '\\|')");
|
|
|
|
## Images
|
|
Markup_e('{{', 'inline',
|
|
'/\\{\\{(?>(\\L))([^|\\]]*)(?:\\|\\s*(.*?)\\s*)?\\}\\}/',
|
|
"Keep(\$GLOBALS['LinkFunctions'][\$m[1]](\$pagename, \$m[1], \$m[2], \$m[3],
|
|
\$m[1].\$m[2], \$GLOBALS['ImgTagFmt']),'L')");
|
|
|
|
|
|
## GUIButtons
|
|
SDVA($GUIButtons, array(
|
|
'em' => array(100, "//", "//", '$[Emphasized]',
|
|
'$GUIButtonDirUrlFmt/em.gif"$[Emphasized (italic)]"',
|
|
'$[ak_em]'),
|
|
'strong' => array(110, "**", "**", '$[Strong]',
|
|
'$GUIButtonDirUrlFmt/strong.gif"$[Strong (bold)]"',
|
|
'$[ak_strong]'),
|
|
'h2' => array(400, '\\n== ', ' ==\\n', '$[Heading]',
|
|
'$GUIButtonDirUrlFmt/h.gif"$[Heading]"'),
|
|
|
|
));
|
|
|