blob: a0d30cf702282fbff08b215089c1c6902cdea8d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
class Text_Wiki_Render_Creole_Include extends Text_Wiki_Render {
function token()
{
if ($options['type'] == 'start') {
return "{{";
}
if ($options['type'] == 'end') {
return "}}";
}
}
}
?>
|