org.xwiki.rendering.internal.html.HTML401SyntaxProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xwiki-rendering-syntax-html Show documentation
Show all versions of xwiki-rendering-syntax-html Show documentation
Parser for the HTML 4.01 syntax
The newest version!
/*
* See the NOTICE file distributed with this work for additional
* information regarding copyright ownership.
*
* This is free software; you can redistribute it and/or modify it
* under the terms of the GNU Lesser General Public License as
* published by the Free Software Foundation; either version 2.1 of
* the License, or (at your option) any later version.
*
* This software 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this software; if not, write to the Free
* Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA, or see the FSF site: http://www.fsf.org.
*/
package org.xwiki.rendering.internal.html;
import java.util.Collections;
import java.util.List;
import javax.inject.Named;
import javax.inject.Provider;
import javax.inject.Singleton;
import org.xwiki.component.annotation.Component;
import org.xwiki.rendering.syntax.Syntax;
import org.xwiki.rendering.syntax.SyntaxType;
/**
* Register the {@code html/4.01} Syntax supported by this module.
*
* @version $Id: 6df6969a638e8a3fb31f12f200e61a56c8ebae07 $
* @since 13.3RC1
*/
@Component
@Named("html/4.01")
@Singleton
public class HTML401SyntaxProvider implements Provider>
{
/**
* HTML syntax type.
*/
public static final SyntaxType HTML = new SyntaxType("html", "HTML");
/**
* HTML 4.01 syntax.
*/
public static final Syntax HTML_4_01 = new Syntax(HTML, "4.01");
@Override
public List get()
{
return Collections.singletonList(HTML_4_01);
}
}