Skip to content

Commit b8117da

Browse files
committed
Cleanup and migrate remaining "User Assistance" documents to HTML5
This updates and modernizes document elements and translates the styling to CSS. Contributes to #3275
1 parent 21555a1 commit b8117da

34 files changed

+218
-239
lines changed

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua.htm

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6-
<meta http-equiv="Content-Style-Type" content="text/css">
7-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
8-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
5+
<meta charset="utf-8">
6+
<link rel="STYLESHEET" href="../book.css" type="text/css">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
98
<title>User assistance support</title>
109
</head>
1110
<body>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua_cheatsheet.htm

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6-
<meta http-equiv="Content-Style-Type" content="text/css">
7-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
8-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
5+
<meta charset="utf-8">
6+
<link rel="STYLESHEET" href="../book.css" type="text/css">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
98
<title>Cheat sheets</title>
109
</head>
1110
<body>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua_cheatsheet_composite.htm

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
1-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3-
<html lang="en" xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
1+
<!DOCTYPE html>
2+
<html lang="en">
43
<head>
54
<meta name="copyright" content=
6-
"Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." />
7-
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8-
<meta http-equiv="Content-Style-Type" content="text/css" />
9-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type=
10-
"text/css" />
11-
<script language="JavaScript" src=
12-
"PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript">
13-
</script>
5+
"Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page.">
6+
<meta charset="utf-8">
7+
<link rel="STYLESHEET" href="../book.css" type="text/css">
8+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
149
<title>
1510
Composite cheat sheets
1611
</title>
1712

18-
<style type="text/css">
13+
<style>
1914
/*<![CDATA[*/
20-
table.c1 {border-collapse: collapse}
15+
table.c1 {
16+
border-collapse: collapse;
17+
border-spacing: 0;
18+
}
19+
table, tr, td { border: 1px solid; }
20+
td { padding: 0 }
21+
td.name { width: 10%; }
22+
td.desc { width: 29%; }
2123
/*]]>*/
2224
</style>
2325
</head>
@@ -84,21 +86,21 @@ <h3>
8486
task is started, There are three possible parameters to a cheat sheet
8587
task.
8688
</p>
87-
<table border="1" cellpadding="0" cellspacing="0" class="c1">
89+
<table class="c1">
8890
<tr>
89-
<td width="10%">
91+
<td class="name">
9092
Parameter name
9193
</td>
9294

93-
<td width="29%">
95+
<td class="desc">
9496
&nbsp;Description
9597
</td>
9698
</tr>
9799
<tr>
98-
<td width="10%">
100+
<td class="name">
99101
id
100102
</td>
101-
<td width="29%">
103+
<td class="desc">
102104
The id of a cheat sheet which has been registered using the extension
103105
point org.eclipse.ui.cheatsheets.cheatSheetContent. This identifies
104106
the cheatsheet which will be associated with this task. Either the id
@@ -107,10 +109,10 @@ <h3>
107109

108110
</tr>
109111
<tr>
110-
<td width="10%">
112+
<td class="name">
111113
path
112114
</td>
113-
<td width="29%">
115+
<td class="desc">
114116
The URL of a cheat sheet content file. This may be an absolute URL,
115117
or relative to the content file for the composite cheat sheet. If
116118
both id and path are specified the path will be used to locate the
@@ -119,10 +121,10 @@ <h3>
119121
</tr>
120122
<tr>
121123

122-
<td width="10%">
124+
<td class="name">
123125
showIntro
124126
</td>
125-
<td width="29%">
127+
<td class="desc">
126128
A boolean parameter with default value of true. If "false" the cheat
127129
sheet when started will initially show the first step rather than the
128130
introduction..
@@ -222,18 +224,18 @@ <h3>
222224
<p>
223225
<a href=
224226
"../../org.eclipse.platform.doc.user/reference/ref-cheatsheets.htm">Working
225-
with cheat sheets</a><br />
227+
with cheat sheets</a><br>
226228
<a href=
227229
"../../org.eclipse.platform.doc.user/reference/ref-composite-cheatsheets.htm">
228-
Working with composite cheat sheets</a><br />
229-
<a href="ua_cheatsheet_simple.htm">Creating cheat sheets</a><br />
230+
Working with composite cheat sheets</a><br>
231+
<a href="ua_cheatsheet_simple.htm">Creating cheat sheets</a><br>
230232

231-
<a href="ua_cheatsheet_guidelines.htm">Authoring guidelines</a><br />
233+
<a href="ua_cheatsheet_guidelines.htm">Authoring guidelines</a><br>
232234
<a href="ua_cheatsheet_composite_content.htm">Composite cheat sheet
233-
content file specification</a><br />
235+
content file specification</a><br>
234236
<a href=
235237
"../reference/extension-points/org_eclipse_ui_cheatsheets_cheatSheetContent.html">
236-
org.eclipse.ui.cheatsheets.cheatSheetContent extension point</a><br />
238+
org.eclipse.ui.cheatsheets.cheatSheetContent extension point</a><br>
237239
</p>
238240
</body>
239241
</html>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua_cheatsheet_composite_content.htm

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6-
<meta http-equiv="Content-Style-Type" content="text/css">
7-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
8-
<link rel="stylesheet" href="../schema.css" charset="utf-8" type="text/css">
9-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
5+
<meta charset="utf-8">
6+
<link rel="STYLESHEET" href="../book.css" type="text/css">
7+
<link rel="stylesheet" href="../schema.css" type="text/css">
8+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
109
<title>Composite cheat sheet content file XML format</title>
1110
</head>
1211
<body>
@@ -18,7 +17,7 @@ <h6 class="CaptionFigColumn">Since: </h6>3.2
1817

1918
<h6 class="CaptionFigColumn">Description: </h6><p>The schema definition for a composite cheat sheet content file. A composite cheat sheet consists of a set of tasks organized into task groups. Each task can be a simple cheat sheet or a user contributed task kind.</p>
2019
<h6 class="CaptionFigColumn">Configuration Markup:</h6>
21-
<p class="SchemaDtd">&lt;!ELEMENT <a name="e.compositeCheatsheet">compositeCheatsheet</a> (<a href="#e.taskGroup">taskGroup</a> | <a href="#e.task">task</a>)&gt;</p>
20+
<p class="SchemaDtd" id="e.compositeCheatsheet">&lt;!ELEMENT compositeCheatsheet (<a href="#e.taskGroup">taskGroup</a> | <a href="#e.task">task</a>)&gt;</p>
2221
<p class="SchemaDtd">&lt;!ATTLIST compositeCheatsheet</p>
2322
<p class="SchemaDtdAttlist">name&nbsp;CDATA #REQUIRED&gt;</p>
2423
<p class="ConfigMarkupElementDesc">
@@ -27,7 +26,7 @@ <h6 class="CaptionFigColumn">Configuration Markup:</h6>
2726
<ul class="ConfigMarkupAttlistDesc">
2827
<li><b>name</b> - The name of the composite cheat sheet which will be displayed in large font when the composite cheat sheet is opened.</li>
2928
</ul>
30-
<br><p class="SchemaDtd">&lt;!ELEMENT <a name="e.taskGroup">taskGroup</a> ((<a href="#e.task">task</a> | <a href="#e.taskGroup">taskGroup</a>) , <a href="#e.intro">intro</a>? , <a href="#e.onCompletion">onCompletion</a>? , <a href="#e.dependency">dependency</a>*)&gt;</p>
29+
<br><p class="SchemaDtd" id="e.taskGroup">&lt;!ELEMENT taskGroup ((<a href="#e.task">task</a> | <a href="#e.taskGroup">taskGroup</a>) , <a href="#e.intro">intro</a>? , <a href="#e.onCompletion">onCompletion</a>? , <a href="#e.dependency">dependency</a>*)&gt;</p>
3130
<p class="SchemaDtd">&lt;!ATTLIST taskGroup</p>
3231
<p class="SchemaDtdAttlist">kind&nbsp;CDATA "set"</p><p class="SchemaDtdAttlist">name&nbsp;CDATA #REQUIRED</p><p class="SchemaDtdAttlist">id&nbsp;&nbsp;&nbsp;CDATA #IMPLIED</p><p class="SchemaDtdAttlist">skip&nbsp;(true | false) "false"&gt;</p>
3332
<p class="ConfigMarkupElementDesc">
@@ -39,7 +38,7 @@ <h6 class="CaptionFigColumn">Configuration Markup:</h6>
3938
<li><b>id</b> - An id for this task group which is required if this task group is referenced by a dependency element.</li>
4039
<li><b>skip</b> - If true this group of tasks may be skipped.</li>
4140
</ul>
42-
<br><p class="SchemaDtd">&lt;!ELEMENT <a name="e.task">task</a> (<a href="#e.intro">intro</a>? , <a href="#e.onCompletion">onCompletion</a>? , <a href="#e.param">param</a>* , <a href="#e.dependency">dependency</a>*)&gt;</p>
41+
<br><p class="SchemaDtd" id="e.task">&lt;!ELEMENT task (<a href="#e.intro">intro</a>? , <a href="#e.onCompletion">onCompletion</a>? , <a href="#e.param">param</a>* , <a href="#e.dependency">dependency</a>*)&gt;</p>
4342
<p class="SchemaDtd">&lt;!ATTLIST task</p>
4443
<p class="SchemaDtdAttlist">kind&nbsp;CDATA #REQUIRED</p><p class="SchemaDtdAttlist">name&nbsp;CDATA #REQUIRED</p><p class="SchemaDtdAttlist">id&nbsp;&nbsp;&nbsp;CDATA #IMPLIED</p><p class="SchemaDtdAttlist">skip&nbsp;(true | false) "false"&gt;</p>
4544
<p class="ConfigMarkupElementDesc">
@@ -51,7 +50,7 @@ <h6 class="CaptionFigColumn">Configuration Markup:</h6>
5150
<li><b>id</b> - An id for this task group which is required if this task group is referenced by a dependency element.</li>
5251
<li><b>skip</b> - If true this task may be skipped.</li>
5352
</ul>
54-
<br><p class="SchemaDtd">&lt;!ELEMENT <a name="e.param">param</a> EMPTY&gt;</p>
53+
<br><p class="SchemaDtd" id="e.param">&lt;!ELEMENT param EMPTY&gt;</p>
5554
<p class="SchemaDtd">&lt;!ATTLIST param</p>
5655
<p class="SchemaDtdAttlist">name&nbsp;&nbsp;CDATA #REQUIRED</p><p class="SchemaDtdAttlist">value&nbsp;CDATA #REQUIRED&gt;</p>
5756
<p class="ConfigMarkupElementDesc">
@@ -61,15 +60,15 @@ <h6 class="CaptionFigColumn">Configuration Markup:</h6>
6160
<li><b>name</b> - The name of this parameter.</li>
6261
<li><b>value</b> - The value of this parameter.</li>
6362
</ul>
64-
<br><p class="SchemaDtd">&lt;!ELEMENT <a name="e.intro">intro</a> (#PCDATA)&gt;</p>
63+
<br><p class="SchemaDtd" id="e.intro">&lt;!ELEMENT intro (#PCDATA)&gt;</p>
6564
<p class="ConfigMarkupElementDesc">
6665
Contains the text which will be displayed before this task has been started. May contain form text markup.</p>
6766
<br><br>
68-
<p class="SchemaDtd">&lt;!ELEMENT <a name="e.onCompletion">onCompletion</a> (#PCDATA)&gt;</p>
67+
<p class="SchemaDtd" id="e.onCompletion">&lt;!ELEMENT onCompletion (#PCDATA)&gt;</p>
6968
<p class="ConfigMarkupElementDesc">
7069
Contains the text which will be displayed in the completion panel for this task. May contain form text markup.</p>
7170
<br><br>
72-
<p class="SchemaDtd">&lt;!ELEMENT <a name="e.dependency">dependency</a> EMPTY&gt;</p>
71+
<p class="SchemaDtd" id="e.dependency">&lt;!ELEMENT dependency EMPTY&gt;</p>
7372
<p class="SchemaDtd">&lt;!ATTLIST dependency</p>
7473
<p class="SchemaDtdAttlist">task&nbsp;CDATA #REQUIRED&gt;</p>
7574
<p class="ConfigMarkupElementDesc">

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua_cheatsheet_guidelines.htm

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6-
<meta http-equiv="Content-Style-Type" content="text/css">
7-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
8-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
5+
<meta charset="utf-8">
6+
<link rel="STYLESHEET" href="../book.css" type="text/css">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
98
<title>Cheat sheet authoring guidelines</title>
109
</head>
1110
<body>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua_cheatsheet_simple.htm

Lines changed: 22 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2011. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6-
<meta http-equiv="Content-Style-Type" content="text/css">
7-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
8-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
5+
<meta charset="utf-8">
6+
<link rel="STYLESHEET" href="../book.css" type="text/css">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
98
<title>Simple cheat sheets</title>
9+
<style>
10+
img { border: 0; }
11+
p.center { text-align: center; }
12+
</style>
1013
</head>
1114
<body>
1215

@@ -52,20 +55,20 @@ <h4>
5255
list. A category for the cheat sheet can also be defined if you want
5356
to place several cheat sheets into a logical grouping. If no category is specified, the cheat sheet will
5457
appear in the <b>Other</b> category.
55-
<p align="center">
56-
<img border="0" src="images/cheatsheets.png" alt="Cheat sheet dialog"></p>
58+
<p class="center">
59+
<img src="images/cheatsheets.png" alt="Cheat sheet dialog"></p>
5760
<h4>Cheat Sheet Items</h4>
5861
<p>
5962
The real work for cheat sheets is done in the content file. The content file is an XML file whose name and location
6063
are specified in the <b>contentFile</b> attribute. The path for the file is relative to the plug-in's directory. (Note
61-
the use of the <tt>$nl$</tt> variable in the directory name, which means the file will be located in a directory specific
64+
the use of the <code>$nl$</code> variable in the directory name, which means the file will be located in a directory specific
6265
to the national language of the target environment.)
6366
</p>
6467
<p>The file format itself includes overview information about the cheat sheet followed
6568
by a description of each step (called an <i>item</i>) that
6669
the user will perform. At its simplest, an item is just a detailed description of the step that the user should
6770
take. However, an item can also specify an action that can be run to perform the step on behalf of the
68-
user. Let's look at the first part of the content file (<tt>HelloWorld.xml</tt>)
71+
user. Let's look at the first part of the content file (<code>HelloWorld.xml</code>)
6972
for the Java cheat sheet.
7073
</p>
7174
<pre>&lt;?xml version="1.0" encoding="UTF-8" ?&gt;
@@ -93,8 +96,8 @@ <h4>Cheat Sheet Items</h4>
9396
&lt;/item&gt;
9497
...
9598
</pre>
96-
<p align="center">
97-
<img border="0" src="images/javacheatsheet.png" alt="Simple java cheat sheet">
99+
<p class="center">
100+
<img src="images/javacheatsheet.png" alt="Simple java cheat sheet">
98101
</p>
99102
<p>
100103
The title and intro information are shown at the top of the cheat sheet. Then, the items are described.
@@ -150,7 +153,7 @@ <h4>Conditional Expressions and Cheat Sheet Variables</h4>
150153
particular condition being true. Conditions are described in the <b>condition</b> element of a subitem
151154
using arbitrary string values that are matched
152155
against the <b>when</b> attribute for each choice. Conditions typically reference cheat sheet
153-
variables using the form <tt>${<i>var</i>}</tt>, where <i>var</i> refers to the name of a cheet sheet variable.
156+
variables using the form <code>${<i>var</i>}</code>, where <i>var</i> refers to the name of a cheet sheet variable.
154157
A few simple examples will help demonstrate how conditional expressions work.
155158
</p>
156159
<p>
@@ -165,9 +168,9 @@ <h4>Conditional Expressions and Cheat Sheet Variables</h4>
165168
&lt;/conditional-subitem&gt;
166169
&lt;/item&gt;
167170
</pre>
168-
This item specifies two possible subitems that depend on the value of the variable <tt>v1</tt>.
169-
If the variable value is <tt>a</tt>, then the first subitem will be included. If the variable value
170-
is <tt>b</tt>, then the second subitem will be included. If the variable is neither value, it is considered
171+
This item specifies two possible subitems that depend on the value of the variable <code>v1</code>.
172+
If the variable value is <code>a</code>, then the first subitem will be included. If the variable value
173+
is <code>b</code>, then the second subitem will be included. If the variable is neither value, it is considered
171174
an error.
172175
<p>
173176
<b>Conditional actions</b> are similar to conditional subitems. The <b>perform-when</b> element specifies
@@ -182,11 +185,11 @@ <h4>Conditional Expressions and Cheat Sheet Variables</h4>
182185
&lt;/perform-when&gt;
183186
&lt;/item&gt;
184187
</pre>
185-
The action to be performed is chosen based on the value of the <tt>v1</tt> variable. If the variable
186-
value is neither <tt>a</tt> or <tt>b</tt>, it is considered an error.
188+
The action to be performed is chosen based on the value of the <code>v1</code> variable. If the variable
189+
value is neither <code>a</code> or <code>b</code>, it is considered an error.
187190
<h4>Repeated Subitems</h4>
188191
<p>Repeated subitems describe a subitem that can can expand into 0, 1, or more similar substeps. The
189-
substeps are individualized using the special variable <tt>${this}</tt>. This variable will be replaced by
192+
substeps are individualized using the special variable <code>${this}</code>. This variable will be replaced by
190193
the values specified in the <b>values</b> attribute. The values attribute is a string of values that are separated
191194
by commas. A variable that expands into a list of values may be used in the values attribute.
192195
For example:
@@ -197,7 +200,7 @@ <h4>Repeated Subitems</h4>
197200
&lt;/repeated-subitem&gt;
198201
&lt;/item&gt;
199202
</pre>
200-
If the value of the variable is <tt>1,b,three</tt>, then three subitems will appear in the cheat sheet, each
203+
If the value of the variable is <code>1,b,three</code>, then three subitems will appear in the cheat sheet, each
201204
having a unique label ("Step 1," "Step b," "Step three"). The variable can be used in the label or the
202205
action paramater value. It can also be accessed from the
203206
<a href="../reference/api/org/eclipse/ui/cheatsheets/ICheatSheetManager.html"><b>ICheatSheetManager</b></a>

eclipse.platform.common/bundles/org.eclipse.platform.doc.isv/guide/ua_dynamic.htm

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
1-
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1+
<!DOCTYPE HTML>
22
<html lang="en">
33
<head>
44
<meta name="copyright" content="Copyright (c) IBM Corporation and others 2000, 2006. This page is made available under license. For full details see the LEGAL in the documentation book that contains this page." >
5-
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
6-
<meta http-equiv="Content-Style-Type" content="text/css">
7-
<link rel="STYLESHEET" href="../book.css" charset="ISO-8859-1" type="text/css">
8-
<script language="JavaScript" src="PLUGINS_ROOT/org.eclipse.help/livehelp.js" type="text/javascript"></script>
5+
<meta charset="utf-8">
6+
<link rel="STYLESHEET" href="../book.css" type="text/css">
7+
<script src="PLUGINS_ROOT/org.eclipse.help/livehelp.js"></script>
98
<title>Dynamic content</title>
109

11-
<style type="text/css">
10+
<style>
1211
.highlight {
1312
color: blue;
1413
}

0 commit comments

Comments
 (0)