Macaulay2 » Documentation
Packages » Text :: MarkUpType
next | previous | forward | backward | up | index | toc

MarkUpType -- the class of markup types used with hypertext

Description

Some markup types allow options (attributes) to be inserted in their html tags.
i1 : DIV ( "class" => "waystouse", SUBSECTION {"Ways to use ", TT "resolution", ":"},
     	     "There are many ways to use ", TO "resolution", "."
     	     )

o1 = Ways to use resolution:
     =======================

     There are many ways to use "resolution".
i2 : html oo

o2 = <div class="waystouse">
       <h2>Ways to use <span class="tt">resolution</span>:</h2>
     There are many ways to use <a title="projective resolution" href="common/share/doc/Macaulay2/OldChainComplexes/html/_resolution.html">resolution</a>.</div>

Menu

Types of markup type:

Methods that use a markup type:

Protected objects of class MarkUpType:

  • ANCHOR -- hypertext anchor
  • BLOCKQUOTE -- hypertext BLOCKQUOTE item
  • BODY -- hypertext BODY item
  • BOLD -- hypertext BOLD item
  • BR -- line break
  • BUTTON (missing documentation)
  • CDATA -- hypertext CDATA element
  • CODE -- hypertext CODE item
  • COMMENT -- hypertext COMMENT element
  • DD -- hypertext DD element
  • DIV -- a hypertext division
  • DL -- hypertext DL element
  • DT -- hypertext DT element
  • EM -- hypertext EM item
  • HEAD -- hypertext HEAD item
  • HEADER1 -- hypertext HEADER1 item
  • HEADER2 -- hypertext HEADER2 item
  • HEADER3 -- hypertext HEADER3 item
  • HEADER4 -- hypertext HEADER4 item
  • HEADER5 -- hypertext HEADER5 item
  • HEADER6 -- hypertext HEADER6 item
  • HR -- hypertext HR element (horizontal rule)
  • HTML -- hypertext item
  • IMG -- hypertext IMG item
  • INPUT (missing documentation)
  • ITALIC -- hypertext italic font
  • KBD -- hypertext KBD item
  • LABEL -- hypertext label item
  • LI -- hypertext list item
  • LINK -- a hypertext LINK element
  • META -- a hypertext META element
  • OL -- hypertext OL item
  • PARA -- hypertext paragraph container
  • PRE -- preformatted text
  • SAMP -- hypertext SAMP item
  • SCRIPT -- hypertext SCRIPT element
  • SMALL -- hypertext SMALL item
  • SPAN -- hypertext span
  • STRONG -- hypertext STRONG item
  • STYLE -- hypertext STYLE element
  • SUB -- hypertext subscript
  • SUP -- hypertext superscript
  • TABLE -- hypertext table
  • TD -- hypertext TD element
  • TH -- hypertext TH element
  • TITLE -- hypertext title
  • TR -- hypertext TR element
  • TT -- hypertext TT item
  • UL -- hypertext UL item
  • VAR -- hypertext VAR item

For the programmer

The object MarkUpType is a type, with ancestor classes SelfInitializingType < Type < MutableHashTable < HashTable < Thing.


The source of this document is in Text.m2:65:0.