ObeoNetwork / M2Doc

The M2Doc technology enables the generation of Office Open XML documents from models.
http://obeonetwork.github.io/M2Doc/
Eclipse Public License 2.0
38 stars 22 forks source link

HTML service creates non needed paragraphes. #499

Closed ylussaud closed 1 year ago

ylussaud commented 1 year ago

The following document creates a paragraph for each link instead of adding them to the same line.

<!DOCTYPE html>
<html>
<head>
</head>
<body>
A list<ul>
    <li>Item 1</li>
    <li>Item 2</li>
</ul>
<br/>A line of text: <b><a href="#A">A</a></b>, <b><a href="#B">B</a></b>.<br/><br/>Other line:<br/>
</body>
</html>