(:Summary: Using the Markup() function for custom wiki syntax:) (:Audience: administrators (intermediate) :) !! Introduction PmWiki's markup translation engine is handled by a set of rules; each rule searches for a specific pattern in the markup text and replaces it with some replacement text. Internally, this is accomplished by using PHP's "[[(http://www.php.net/)preg_replace]]" function. Rules are added to the translation engine via PmWiki's Markup() or [[#php55|Markup_e()]] functions, which look like ->[@Markup($name, $when, $pattern, $replace); # OR Markup_e($name, $when, $pattern, $replace);@] where [@$name@] is a unique name (a string) given to the rule, [@$when@] says when the rule should be applied relative to other rules, [@$pattern@] is the pattern to be searched for in the markup text, and [@$replace@] is what the pattern should be replaced with. For example, here's the code that creates the rule for [@''emphasized text''@] (in ''scripts/stdmarkup.php''): ->[@Markup("em", "inline", "/''(.*?)''/", "$1");@] Basically this statement says to create a rule called "em" to be performed with the other "inline" markups, and the rule replaces any text inside two pairs of single quotes with the same text ($1) surrounded by [@@] and [@@]. The first two parameters to Markup() are used to specify the sequence in which rules should be applied. The first parameter provides a name for a rule -- "[@em@]" in the example above. We could've chosen other names such as "[@''@]", or even "[@twosinglequotes@]". In general PmWiki uses the markup itself to name the rule (i.e., PmWiki uses "[@''@]" instead of "[@em@]"), but to keep this example easier to read later on we'll use a mnemonic name for now. The second parameter says that this rule is to be done along with the other "inline" markups. PmWiki divides the translation process into a number of phases: [@ _begin start of translation fulltext translations to be performed on the full text split conversion of the full markup text into lines to be processed directives directive processing inline inline markups links conversion of [[links]], url-links, and WikiWords block block markups style style handling _end end of translation @] This argument is normally specified as a left-angle bracket ("before") or a right-angle bracket ("after") followed by the name of another rule. Thus, specifying "inline" for the second parameter says that this rule should be applied when the other "inline" rules are being performed. If we want a rule to be performed with the directives -- i.e., before inline rules are processed, we would specify "directives" or "'- A significant rule in terms of ordering is "[={$var}=]" which substitutes variables -- if you say "<[={$var}=]" then your markup will be processed before variables are substituted whereas if you say ">[={$var}=]" then your markup will be processed after variables are substituted. -' The third parameter is a Perl-compatible regular expression. Basically, it is a slash, a [[regular expression -> http://www.php.net/manual/en/reference.pcre.pattern.syntax.php]], another slash, and a set of optional [[modifiers -> http://www.php.net/manual/en/reference.pcre.pattern.modifiers.php]]. The example uses the pattern string [@"/''(.*?)''/"@], which uses [@''(.*?)''@] as the regular expression and no options. (The regular expression says "find two single quotes in succession, then as few arbitrary characters as are needed to make the match find something, then two additional single quotes in succession"; the parentheses "capture" a part of the wikitext for later use.) The fourth parameter is the replacement text that should be inserted instead of the marked-up wikitext. You can use [@$1@], [@$2@], etc. to insert the text from the first, second etc. parenthesised part of the regular expression. In the example, we have [@"$1"@], which is an [@@], the text matched by the first parentheses (i.e. by the [@.*?@] section of the pattern), and [@@]. Here's a rule for [@@@monospaced@@@] text: ->[@Markup("@@", "inline", "/@@(.*?)@@/", "$1");@] and for a [@[:comment ...:]@] directive that is simply removed from the output: ->[@Markup("comment", "directives", "/\\[:comment .*?:\\]/", '');@] Okay, now how about the rule for [@'''strong emphasis'''@]? We have to be a bit careful here, because although this translation should be performed along with other inline markup, we also have to make sure that the rule for [@'''@] is handled ''before'' the rule for [@''@], because [@'''@] also contains [@''@]. The second parameter to Markup() can be used to specify the new rule's relationship to any other rule: ->[@Markup("strong", "$1");@] This creates a rule called "strong", and the second parameter "em" instead. Thus, it's possible to add rules at any point in PmWiki's markup translation process in an extensible manner. (In fact, the "inline", "block", "directives", etc., phases above are just placeholder rules used to provide an overall sequence for other rules. Thus one can use "[@DisableMarkup("strong");@] PmWiki's default markup rules are defined in the ''scripts/stdmarkup.php'' file. To see the entire translation table as the program is running, the scripts/diag.php module adds "[@?action=ruleset@]", which displays the set of defined markup rules in the sequence in which they will be processed. You can see it at [[CustomMarkup?action=ruleset | CustomMarkup?action=ruleset]]. You must first enable the action by setting $EnableDiag = 1 in your configuration file. !! Other common examples !!! Define a custom markup to produce a specific HTML or Javascript sequence Suppose an admin wants to have a simple "[@(:example:)@]" markup that will always produce a fixed HTML string in the output, such as for a webring, Google AdSense display, or Javascript. The Markup() call to do this would be: ->[@ Markup('example', 'directives', '/\\(:example:\\)/', Keep("

Here is a link to example.com

") ); @] * The first argument is a unique name for the markup ("example"). * The second argument says to perform this markup along with other directives. * The third argument is the pattern to look for "(:example:)". * The fourth argument is the HTML that "(:example:)" is to be replaced with. We use the Keep() function here to prevent the output from being further processed by PmWiki's markup rule -- in the above example, we don't want the http://www.example.com url to be again converted to a link. [[#random]] !!! Define a markup to call a custom function that returns content An 'e' option on the [@$pattern@] parameter will cause the [@$replace@] parameter to be treated as a PHP expression to be evaluated instead of replacement text. Thus, a markup to produce a random number between 1 and 100 might look like: ->[@ Markup('random', 'directives', '/\\(:random:\\)/e', "rand(1, 100)"); @] This calls the PHP built-in rand() function and substitutes the directive with the result. Any function can be called, including functions defined in a [[local customization(s)]] file. Arguments can also be passed by using regular expression capturing parentheses, thus ->[@ Markup('randomargs', 'directives', '/\\(:random (\\d+) (\\d+):\\)/e', "rand('$1', '$2')"); @] will cause the markup [@(:random 50 100:)@] to generate a random number between 50 and 100. ->%note% Note: Be very careful with the /e modifier in regular expressions; malicious authors may be able to pass strings that cause arbitrary and undesirable PHP functions to be executed. For a PmWiki function to help with parsing arbitrary sequences of arguments and key=value pairs, see Cookbook:ParseArgs. [[#php55]] !! Migration to PHP 5.5 and Markup_e() Since PHP version 5.5, the /e evaluation modifier is deprecated and some hosting providers don't allow its use. Recent versions of the PmWiki core (2.2.58 and newer) allow new ways to define markup rules without being dependent on the /e eval modifier. The historical ways to define markup rules are not removed and work, but may be incompatible with PHP 5.5 installations. ''Note: if your replacement pattern doesn't need evaluation, you must use Markup() like before and not Markup_e().'' The following is acceptable for PHP 5.5+ (compatible with PmWiki 2.2.58+, will also work in PHP 5.4 and older) * Markup($name, $when, $pattern, $replace); ** $pattern can no longer have an "/e" modifier ** $replace can be a string with matches as $1, $2 etc. ** $replace can be a function name (callback) which will be called with the array of matches as argument. ** for PHP 5.4 or earlier, $pattern can have an /e modifier. The existing ways still work, but under PHP 5.5, they trigger warnings for deprecated feature. * Markup_e($name, $when, $pattern, $replace); ** $pattern cannot have an "/e" modifier ** $replace can be a string with program code to be evaluated; note that the matches can be accessed with $m[1], $m[2] instead of '$1', '$2' ** $replace can be a function name (callback) which will be called with the array of matches as argument (PmWiki 2.2.59+). Examples: * For PHP 5.4 and older, this is acceptable:[@ Markup('randomargs', 'directives', '/\\(:random (\\d+) (\\d+):\\)/e', "rand('$1', '$2')" );@] * For PHP 5.5 and newer, $replace is code, we call Markup_e():[@ Markup_e('randomargs', 'directives', '/\\(:random (\\d+) (\\d+):\\)/', "rand(\$m[1], \$m[2])" );@] The array $m contains the matches in parentheses from the $pattern. The matches \$m[1] have a backslash before the $ sign to not be evaluated in the double-quoted string. %note% This will also work in PHP 5.4 and older%% but requires PmWiki 2.2.58 or newer. * For PHP 5.5 and newer, $replace is callback, we call Markup():[@ Markup('randomargs', 'directives', '/\\(:random (\\d+) (\\d+):\\)/', "MyRandom" ); function MyRandom($matches) { return rand($matches[1], $matches[2]); } @] %note% This will also work in PHP 5.4 and older%% but requires PmWiki 2.2.58 or newer. Other example: * PHP 5.4 or older: [@ Markup('Maxi:','>frame<<[@ Markup('mykey', 'directives', '/\\(:mydirective (.*?) (.*?):\\)/i', 'MyFunction' ); function MyFunction($matches) { extract($GLOBALS["MarkupToHTML"]); # ... do stuff with $matches ... return $out; # or return Keep($html); } @] >><< !!!Markup for both new and old versions of PmWiki If you want your recipe to work with PmWiki 2.2.58 and newer on PHP 5.5 and with older PmWiki+PHP versions, you can use something like this: >>frame<<[@ if(function_exists('Markup_e')) { # new format, no /e Markup_e('rnd', 'directives', '/\\(:random (\\d+) (\\d+):\\)/', "rand(\$m[1], \$m[2])"); } else { # old format Markup('rnd', 'directives', '/\\(:random (\\d+) (\\d+):\\)/e', "rand($1, $2)"); } @] >><< If you have any questions about the new way to define custom markup, you can ask us [[CustomMarkup-Talk|at the talk page]] or on the [[PmWiki/mailing lists]]. !!FAQ >>faq<< [[#faq]] Q: How can I embed JavaScript into a page's output? A: There are several ways to do this. The [[Cookbook:JavaScript]] recipe describes a simple means for embedding static JavaScript into web pages using [[custom markup]]. For editing JavaScript directly in wiki pages (which can pose various security risks), see the [[(Cookbook:)JavaScript-Editable]] recipe. For JavaScript that is to appear in headers or footers of pages, the [[skin(s)]] template can be modified directly, or