Macaulay2 » Documentation
Packages » Hypertext > HypertextContainer > HTML
next | previous | forward | backward | up | index | toc

HTML -- hypertext item

Synopsis

Description

i1 : HTML { HEAD { TITLE "foo" }, BODY { "Hi there" } }

o1 = 

     Hi there
i2 : html oo

o2 = <!DOCTYPE html>
     <html lang="en">
       <head>
         <title>foo</title>
       </head>
       <body>
     Hi there  </body>

     </html>

See also

For the programmer

The object HTML is a markup type, with ancestor classes HypertextContainer < Hypertext < BasicList < Thing.