/*
* 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.wikimodel.xml;
/**
* @version $Id: 33a6023eb8cffb44d8b35397331d88cd5c2b8653 $
* @since 4.0M1
*/
public interface ISaxConst
{
String DEFINITION_DESCRIPTION = "dd";
String DEFINITION_LIST = "dl";
String DEFINITION_TERM = "dt";
String DOCUMENT = "document";
String EMPTY_LINES = "emptyLines";
String EMPTY_LINES_SIZE = "number";
String ESCAPE = "esc";
String EXTENSION_BLOCK = "extensionBlock";
String EXTENSION_INLINE = "extensionInline";
String EXTENSION_NAME = "name";
String FORMAT = "format";
String HEADER = "header";
String HEADER_LEVEL = "level";
String HORIZONTAL_LINE = "hr";
String IMAGE = "image";
String IMAGE_IMPLICIT = "implicit";
String INFO_BLOCK = "info";
String INFO_BLOCK_TYPE = "type";
String LINE_BREAK = "br";
String LIST_ITEM = "li";
String LIST_ORDERED = "ol";
String LIST_UNORDERED = "ul";
String MACRO_BLOCK = "macroBlock";
String MACRO_INLINE = "macroInline";
String MACRO_NAME = "name";
String NEW_LINE = "\n";
String PARAGRAPH = "p";
String PROPERTY_BLOCK = "property";
String PROPERTY_DOC = "doc";
String PROPERTY_INLINE = "inlineProperty";
String PROPERTY_URL = "url";
String QUOTATION = "blockquot";
String QUOTATION_LINE = "line";
String REF_EXPLICIT = "aExplicit";
String REF_IMPLICIT = "a";
String SECTION = "section";
String SECTION_CONTENT = "content";
String SECTION_DOC_LEVEL = "docLevel";
String SECTION_HEADER_LEVEL = "headerLevel";
String SECTION_LEVEL = "absLevel";
String STYLES = "styles";
String TABLE = "table";
String TABLE_CAPTION = "tcaption";
String TABLE_CAPTION_PARAM = "caption";
String TABLE_CELL = "td";
String TABLE_HEAD = "th";
String TABLE_ROW = "tr";
String VERBATIM_BLOCK = "pre";
String VERBATIM_INLINE = "preInline";
}