00001 <?php 00002 /* 00003 This file is part of WikiConverter. WikiConverter is a program 00004 that converts text/wiki into other formats (like html or 00005 xml/docbook). 00006 00007 Copyright (c) 2005 Dashamir Hoxha, dhoxha@inima.al 00008 00009 WikiConverter is free software; you can redistribute it and/or 00010 modify it under the terms of the GNU General Public License as 00011 published by the Free Software Foundation; either version 2 of the 00012 License, or (at your option) any later version. 00013 00014 WikiConverter is distributed in the hope that it will be useful, 00015 but WITHOUT ANY WARRANTY; without even the implied warranty of 00016 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00017 General Public License for more details. 00018 00019 You should have received a copy of the GNU General Public License 00020 along with WikiConverter; if not, write to the Free Software 00021 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 00022 USA 00023 */ 00024 00029 class Text extends Tpl 00030 { 00031 function Text() 00032 { 00033 Tpl::Tpl('Text'); 00034 $this->id = 'Text'; 00035 } 00036 00037 function line_to_html($line, $indent) 00038 { 00039 //any lines in a text should be empty lines 00040 //so they are skipped 00041 return ''; 00042 } 00043 00044 function line_to_xml($line, $indent) 00045 { 00046 //any lines in a text should be empty lines 00047 //so they are skipped 00048 return ''; 00049 } 00050 } 00051 ?>