/* xmp2pre - converts xmp tags in a html document to pre tags. Copyright (C) 2002 Kasper Dupont This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* Known bugs: Doesn't respect HTML comments. For normal use of comments this is not a problem. You have to do something weird to get incorrect output because of this bug. */ %Start XMP %% "<"[Xx][Mm][Pp][^>]*">" { printf("
"); BEGIN XMP;}
">" { printf("&gt;"); }
<XMP>"</"[Xx][Mm][Pp][^>]*">" { printf("</pre>"); BEGIN INITIAL;}
<XMP>"<" { printf("&lt;"); }
<XMP>"&" { printf("&amp;"); }