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

class Text_Wiki_Render_Plain extends Text_Wiki_Render {
    
    function pre()
    {
        return;
    }
    
    function post()
    {
        return;
    }
    
}
?>