intro xml - html tags inside text element [message #475659] |
Mon, 22 June 2009 05:39  |
Eclipse User |
|
|
|
Hi, thanks a lot for previous answer, it helped.
My question is about usage of html tags in text part of intro xml.
I find in the manual that it can include li, p, b tags.
I tried different combination of the following page, but it didn't work:
<page id="run" style= "style.css" style-id="page">
<title style-id="intro-header">How to run</title>
<text>
tralala
<p> trululu </p>
<ol>
<li>Define the test name to work with:
set u = "unit name"</li>
<li>Create working directory and make it to be a current directory
mkdir test; cd test </li>
<li>Invocate test:
test -name $u -data .</li>
</ol>
</text>
</page>
The result is that it display the header "How to run" and the first line
without tags "tralala". After that all the rest doesn't appear.
Thanks, Stella
|
|
|
Re: intro xml - html tags inside text element [message #475661 is a reply to message #475659] |
Mon, 22 June 2009 08:51  |
Eclipse User |
|
|
|
I implemented it with static html pages instead, like the following:
introcontent.xml
<page id="run"
url="how_to_run.html" />
how_to_run.html
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" >
</head>
<body>
<h1>How to run</h1>
<ol>
<li>tralala</li>
<li>trululu</li>
</ol>
</body>
|
|
|
Re: intro xml - html tags inside text element [message #623423 is a reply to message #475659] |
Mon, 22 June 2009 08:51  |
Eclipse User |
|
|
|
I implemented it with static html pages instead, like the following:
introcontent.xml
<page id="run"
url="how_to_run.html" />
how_to_run.html
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" >
</head>
<body>
<h1>How to run</h1>
<ol>
<li>tralala</li>
<li>trululu</li>
</ol>
</body>
|
|
|
Powered by
FUDForum. Page generated in 0.02894 seconds