summaryrefslogtreecommitdiff
path: root/includes/pear/Text/Wiki/Render/Plain/Newline.php
blob: 7c7903ee850efaa299e70a7a347b7f2e4d4fc107 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

class Text_Wiki_Render_Plain_Newline extends Text_Wiki_Render {
    
    
    function token($options)
    {
        return "\n";
    }
}

?>