8f3d82f4fcb02a77795601f44790304911e07697
[atutor.git] / mods / wiki / plugins / old / markup_html.php
1 <?php
2
3 /*
4    If you happened to use the | at a start of a line to escape for
5    <html> usage, then use this plugin to keep compatible for a while.
6    Nowadays, you enclose blocks or fragments into <html></html> or
7    even <htm></htm> blocks (the latter still allows WikiLinks and markup).
8 */
9
10
11 $ewiki_plugins["format_source"][] = "ewiki_fsrc_old_html";
12
13 function ewiki_fsrc_old_html(&$src) {
14    $src = preg_replace('/^\|(.+(\n\|.+)*\n)/me', '"<html>" . str_replace("\n|", "\n", stripslashes("\\1")) . "<html>"', $src);
15 }
16
17 ?>