Finished everything on the TODO list (yay!); several CSS cleanups; tons more changes in this commit - see the patch for details
<?php
class Text_Wiki_Render_Plain_Heading extends Text_Wiki_Render {
function token($options)
{
if ($options['type'] == 'end') {
return "\n\n";
} else {
return "\n";
}
}
}
?>