![]() |
In einem HTMLHelp Projekt können Schlüsselwörter für den Index als Meta Statement im Abschnitt <head> mit Hilfe einer undokumentierten Funktion integrieren werden. Die so angegeben Schlüsselworte werden bei einem kompilierten Hilfesystem in den Index eingebunden. Interessant ist auch die problemlose Übernahme nach MS Help 2.0.
In a HTMLHelp project keywords for the index can want to integrate as a meta statement in the section <head> with help of an undocumented function . This one indicated so keyword be tied into the index at a compiled help system. The easy take-over to Help 2.0 is also interesting.
<head>
<title>Index</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>
<meta name="keywords" content="Apfel, Gesundheit, Obst">
<meta name="MS-HKWD" content="Apfel">
<meta name="MS-HKWD" content="Gesundheit">
<meta name="MS-HKWD" content="Obst">
<meta name="MS-HKWD" content="Obst,Apfel">
<meta name="MS-HAID" content="Ernährung">
<link href="../design.css" rel="stylesheet" type="text/css"
/>
</head>
![]() |