Package org.pegdown.ast

Examples of org.pegdown.ast.HtmlBlockNode


        }
    }

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


        }
    }

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

TOP

Related Classes of org.pegdown.ast.HtmlBlockNode

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.