load_component() now accepts an array, and most JS components are loaded all in one request now. Totally modular baby. And failsafe too.
<?php
class Text_Wiki_Render_Plain_Newline extends Text_Wiki_Render {
function token($options)
{
return "\n";
}
}
?>