Package org.thymeleaf.templateparser.html

Examples of org.thymeleaf.templateparser.html.LegacyHtml5TemplateParser


    @Property(value = {DEFAULT_PATTERN}, unbounded = PropertyUnbounded.ARRAY)
    public static final String PATTERNS_PARAMETER = "org.apache.sling.scripting.thymeleaf.impl.templatemodehandler.LegacyHtml5TemplateModeHandler.patterns";

    public LegacyHtml5TemplateModeHandler() {
        super(TEMPLATE_MODE_NAME, new LegacyHtml5TemplateParser(TEMPLATE_MODE_NAME, poolSize()), new XmlTemplateWriter());
    }
View Full Code Here


     *
     * @since 2.0.8
     */
    public static Document getLegacyHTML5DOMFor(final Reader source) {
        Validate.notNull(source, "Source cannot be null");
        return getDOMFor(source, new LegacyHtml5TemplateParser("LEGACYHTML5", 1));
    }
View Full Code Here

TOP

Related Classes of org.thymeleaf.templateparser.html.LegacyHtml5TemplateParser

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.