home *** CD-ROM | disk | FTP | other *** search
- @hyperguide html.hguide
- @$VER: html.hguide 40.2 (31.03.97)
- @macro m_prg "@{b}HTML DataType@{ub}"
- @include htds.hgm
- @node main "HTML DataType Documentation"
- @toc HTDS.hguide/main
- @prev hyperguide.hguide/main
- @next directory.hguide/main
-
- @{jcenter}@{m_title}@{m_copyright}@{m_welcome}@{jleft}
-
- @{settabs 30}
- @{m_sec Menu}
- @{m_menuitem}@{" What's new ? " link WhatsNew }
- @{line}
- @{m_menuitem}@{" Configuration " link Configuration }@{m_menuinfo "Adapt to your needs"}
- @{m_menuitem}@{" Tags " link Tags }@{m_menuinfo "Supported Tags"}
- @{line}
- @{m_menuitem}@{" Copyright " link HTDS.hguide/Copyright }@{m_menuinfo "legal stuff"}
- @{m_menuitem}@{" Author " link SR.hguide/Addresses }@{m_menuinfo "how to contact me"}
- @{m_menuitem}@{" Registration " link HTDS.hguide/Registration }@{m_menuinfo "It's Shareware !!!"}
- @{line}@{pari 0}@{lindent 6}@{par}
- @{b}Note : @{ub}@{parset}In the unregistered version the html.datatype has no functional restrictions,
- but the number of opened html documents at one time is restricted to five.
- @{m_endsec}
-
- @endnode
-
- @node WhatsNew "HTML/What's New ?"
-
- @{m_sec "What's New ?"}
-
- @{itemize}
- @{item}@{m_high "V40.8 :"}
- @{itemize}
- @{item}some bug fixes
- @{enditemize}@{line}
- @{enditemize}
- @{m_endsec}
- @endnode
- @node Configuration "HTML/Configuration"
-
- @{m_sec "Configuration"}
- As the recommended standard for datatypes, the preference file for the
- html.datatype is called @{"html.prefs" link Env:DataTypes/html.prefs} and is
- searched first in the @{m_file PROGDIR:Prefs/DataTypes} and then in the
- @{m_file Env:DataTypes} directory. The following options are currently available
- using ReadArgs() argument parsing with the following templates :
-
- @{itemize}
- @{item}NORMALFONT/S/A,SIZE/N/K/A,FONT/A,FONTSIZE/N/A
- @{definition}
- @{defterm}NORMALFONT
- @{defdata}Specifies that this defines a proportional font
-
- @{defterm}SIZE
- @{defdata}Specifies the abstract HTML fontsize (1 - 7)
-
- @{defterm}FONT
- @{defdata}Specifies the amiga font name. You can omit the @{m_sample ".font"} suffix
-
- @{defterm}FONTSIZE
- @{defdata}Specifies the amiga font size.
- @{enddefinition}
- @{itemize}
- Defaults :
- @{item}NORMALFONT SIZE=7 times.font 24
- @{item}NORMALFONT SIZE=6 times.font 18
- @{item}NORMALFONT SIZE=5 times.font 15
- @{item}NORMALFONT SIZE=4 times.font 15
- @{item}NORMALFONT SIZE=3 times.font 13
- @{item}NORMALFONT SIZE=2 times.font 11
- @{item}NORMALFONT SIZE=1 times.font 11
- @{enditemize}
-
- @{item}FIXEDFONT/S/A,SIZE/N/K/A,FONT/A,FONTSIZE/N/A
- @{definition}
- @{defterm}FIXEDFONT
- @{defdata}Specifies that this defines a fixed width font
-
- @{defterm}SIZE
- @{defdata}Specifies the abstract HTML fontsize (1 - 7)
-
- @{defterm}FONT
- @{defdata}Specifies the amiga font name. You can omit the @{m_sample ".font"} suffix
-
- @{defterm}FONTSIZE
- @{defdata}Specifies the amiga font size.
- @{enddefinition}
- @{itemize}
- Defaults :
- @{item}FIXEDFONT SIZE=7 courier.font 24
- @{item}FIXEDFONT SIZE=6 courier.font 18
- @{item}FIXEDFONT SIZE=5 courier.font 15
- @{item}FIXEDFONT SIZE=4 courier.font 15
- @{item}FIXEDFONT SIZE=3 courier.font 13
- @{item}FIXEDFONT SIZE=2 courier.font 11
- @{item}FIXEDFONT SIZE=1 courier.font 11
- @{enditemize}
-
- @{item} FONTTAG/S/A,TAG/A/K,SIZE/N/K,BOLD/S,ITALIC/S,UNDERLINED/S,FIXED/S,DIFF/S
- @{definition}
- @{defterm}FONTTAG
- @{defdata}Specifies the HTML font definition
-
- @{defterm}TAG
- @{defdata}Specifies the HTML Tag like <STRONG>
-
- @{defterm}SIZE
- @{defdata}Specifies the abstract HTML font size (1-7) or if the @{m_sample DIFF}
- option is set the difference to the actual font size.
-
- @{defterm}BOLD
- @{defdata}Sets the bold flag for this font tag
-
- @{defterm}ITALIC
- @{defdata}Sets the italic flag for this font tag
-
- @{defterm}UNDERLINED
- @{defdata}Sets the underlined flag for this font tag
-
- @{defterm}FIXED
- @{defdata}Specifies to use the fixed font definition
-
- @{defterm}DIFF
- @{defdata}If set, the @{m_sample SIZE} option is interpreted relativ
- instead of absolut font size
- @{enddefinition}
-
- @{itemize}
- Defaults in the @{m_file html.prefs} file :
- @{item}FONTTAG TAG=H1 SIZE=7 BOLD
- @{item}FONTTAG TAG=H2 SIZE=6 BOLD
- @{item}FONTTAG TAG=H3 SIZE=5 BOLD
- @{item}FONTTAG TAG=H4 SIZE=4 BOLD
- @{item}FONTTAG TAG=H5 SIZE=3 BOLD
- @{item}FONTTAG TAG=H6 SIZE=2 BOLD
-
-
- @{item}FONTTAG TAG=TT FIXED
- @{item}FONTTAG TAG=STRIKE UNDERLINED
- @{item}FONTTAG TAG=SMALL SIZE=2
- @{item}FONTTAG TAG=BIG SIZE=6
- @{item}FONTTAG TAG=SUB SIZE=1
- @{item}FONTTAG TAG=SUP SIZE=1
-
-
- @{item}FONTTAG TAG=EM ITALIC
- @{item}FONTTAG TAG=CITE ITALIC
- @{item}FONTTAG TAG=STRONG BOLD
- @{item}FONTTAG TAG=CODE FIXED
- @{item}FONTTAG TAG=SAMP ITALIC FIXED
- @{item}FONTTAG TAG=KBD ITALIC FIXED
- @{item}FONTTAG TAG=VAR ITALIC FIXED
- @{item}FONTTAG TAG=DFN ITALIC BOLD
- @{item}FONTTAG TAG=LH BOLD SIZE=1 DIFF
- @{enditemize}
- @{enditemize}
- @{m_endsec}
- @endnode
- @node Tags "HTML/Supported Tags"
-
- @{m_sec "Supported Tags"}
- I list only the support tags with used attributes. For the real documentation see on
- the appropriate places like @{http_addr "http://www.w3.org/pub/WWW/MarkUp/Wilbur/"} for
- HTML 3.2@{line}
-
- @{itemize}
- HEAD elements :@{line}
- @{item}<TITLE></TITLE>
- @{item}<LINK REL=Help|Index|Next|Previous|ToC HREF="">
- @{item}<META NAME=ANNOTATION|AUTHOR|COPYRIGHT|VERSION CONTENT="">
- @{enditemize}
-
- @{itemize}
- <BODY BACKGROUND="" BGCOLOR=""> elements :@{line}
- @{item}<A HREF="" NAME=""></A>
- @{item}<B></B>
- @{item}<BASEFONT SIZE="">
- @{item}<BIG></BIG>
- @{item}<BR>
- @{item}<CENTER></CENTER>
- @{item}<CITE></CITE>
- @{item}<CODE></CODE>
- @{item}<DD>
- @{item}<DFN></DFN>
- @{item}<DIR></DIR>
- @{item}<DL></DL>
- @{item}<DT>
- @{item}<EM></EM>
- @{item}<FONT SIZE="" COLOR=""></FONT>
- @{item}<H1 ALIGN=LEFT|RIGHT|CENTER></H1>
- @{item}<H2 ALIGN=LEFT|RIGHT|CENTER></H2>
- @{item}<H3 ALIGN=LEFT|RIGHT|CENTER></H3>
- @{item}<H4 ALIGN=LEFT|RIGHT|CENTER></H4>
- @{item}<H5 ALIGN=LEFT|RIGHT|CENTER></H5>
- @{item}<H6 ALIGN=LEFT|RIGHT|CENTER></H6>
- @{item}<HR>
- @{item}<I></I>
- @{item}<IMG SRC="" ALT="" ALIGN=MIDDLE|RIGHT|LEFT>
- @{item}<KBD></KBD>
- @{item}<LH></LH>
- @{item}<LI>
- @{item}<MENU></MENU>
- @{item}<OL></OL>
- @{item}<P ALIGN=LEFT|RIGHT|CENTER></P>
- @{item}<PRE></PRE>
- @{item}<SAMP></SAMP>
- @{item}<SMALL></SMALL>
- @{item}<STRIKE></STRIKE>
- @{item}<STRONG></STRONG>
- @{item}<SUB></SUB>
- @{item}<SUP></SUP>
- @{item}<TT></TT>
- @{item}<U></U>
- @{item}<UL></UL>
- @{item}<VAR></VAR>
- @{enditemize}
- @{m_endsec}
- @endnode
-
-