Feature Request: HTML output on motion control
Description
The HTML output on motion control isn't valid HTML to some extent. Sample:
<html><head></head>
<body>
<a href=/1/config/get><- back</a><br><br>
<b>Thread 1</b><br>
<li>text_left = Kamera 1 <a href='/motion_guide/motion_guide.html#text_left' target=_blank>[help]</a></li></body>
</html>
The <li> Element is only valid within an <ul> Element. Parsing this with an HTML parser programmatically leads to errors.
Either the <li> is ommited or an <ul>...</ul> is added.
The "<- back" isn't HTML either. The < must be encoded,
so <– would be the propper encoding for a text-like left arrow:
<– back
Can this be applied?
--
AxelAmthor - 25 Nov 2007
Follow up
This is actually a bug report. Naturally Motion should use valid html so I opened
BugReport2007x11x25x102808