1<?php
2// $Header: /cvsroot/html2ps/xhtml.comments.inc.php,v 1.2 2005/04/27 16:27:46 Konstantin Exp $
3
4function remove_comments(&$html) {
5  $html = preg_replace("#<!--.*?-->#is","",$html);
6  $html = preg_replace("#<!.*?>#is","",$html);
7}
8
9?>