193194195196197198199200201202
} } public static boolean isHtmlComment( Node node ) { if (node instanceof HtmlBlockNode) { HtmlBlockNode blockNode = (HtmlBlockNode) node; return blockNode.getText().startsWith( "<!--" ); } return false; }
198199200201202203204205206207