note description: "Tags of subset of the HTML language. This class may be used as % %ancestor by classes needing its facilities" legal: "See notice at end of class." status: "See notice at end of class." date: "$Date$" revision: "$Revision$" class HTML_CONSTANTS feature -- Constants Bold_start: STRING = "" -- Bold face start tag. Bold_end: STRING = "" -- Bold face end tag. Glossary_start: STRING = "
" -- Glossary list start tag. Glossary_end: STRING = "
" -- Glossary list end tag. Glossary_term: STRING = "
" -- Glossary list term. Glossary_definition: STRING = "
" -- Glossary list definition. H1_start: STRING = "

" -- Header level 1 start tag. H1_end: STRING = "

" -- Header level 1 end tag. H2_start: STRING = "

" -- Header level 2 start tag. H2_end: STRING = "

" -- Header level 2 end tag. H3_start: STRING = "

" -- Header level 3 start tag. H3_end: STRING = "

" -- Header level 3 end tag. H4_start: STRING = "

" -- Header level 4 start tag. H4_end: STRING = "

" -- Header level 4 end tag. H5_start: STRING = "
" -- Header level 5 start tag. H5_end: STRING = "
" -- Header level 5 end tag. H6_start: STRING = "
" -- Header level 6 start tag. H6_end: STRING = "
" -- Header level 6 end tag. Horizontal_rule: STRING = "
" -- Horizontal rule tag. Italic_start: STRING = "" -- Italic start tag. Italic_end: STRING = "" -- Italic end tag. Line_break: STRING = "
" -- Line break tag. List_item_start: STRING = "
  • " -- List item start tag. List_item_end: STRING = "
  • " -- List item end tag. Ordered_list_start: STRING = "
      " -- Ordered list start tag. Ordered_list_end: STRING = "
    " -- Ordered list end tag. Paragraph_start: STRING = "

    " -- Paragraph start tag. Paragraph_end: STRING = "

    " -- Paragraph end tag. Preformatted_start: STRING = "
    "
    			-- Preformatted text start tag.
    
    	Preformatted_end: STRING = "
    " -- Preformatted text end tag. Unordered_list_start: STRING = ""; -- Unordered list end tag. note copyright: "Copyright (c) 1984-2006, Eiffel Software and others" license: "Eiffel Forum License v2 (see http://www.eiffel.com/licensing/forum.txt)" source: "[ Eiffel Software 356 Storke Road, Goleta, CA 93117 USA Telephone 805-685-1006, Fax 805-685-6869 Website http://www.eiffel.com Customer support http://support.eiffel.com ]" end -- class HTML_CONSTANTS