1
Programming / Re: Development Help with INF2Html
« on: May 13, 2024, 08:24:35 am »
The generated HTML for the lists is completely wrong. You don't put <ul> inside <ul>.
You have to do something like the following:
You have to do something like the following:
Code: [Select]
<ul>
<li>WC_BUTTON<br/>
Consists of buttons and boxes that the operator can select by clicking the pointing device or using the keyboard. These messages are described in <a href="...">Button Control Window Processing.</a>
</li>
...
</ul>
you can also try to wrap the explanation in <p> making it its own paragraph, then you don't need the <br/>. But I don't know ATM how that would look.