File "Heading.php"
Full path: E:/sites/Single15/tinmung2007/webroot/XAMMP/php/pear/Text/Wiki/Render/Plain/Heading.php
File size: 241 B
MIME-type:
Charset: utf-8
<?php
class Text_Wiki_Render_Plain_Heading extends Text_Wiki_Render {
function token($options)
{
if ($options['type'] == 'end') {
return "\n\n";
} else {
return "\n";
}
}
}
?>