https://bugs.documentfoundation.org/show_bug.cgi?id=173387
Bug ID: 173387
Summary: code not lightweight
Product: LibreOffice
Version: unspecified
Hardware: All
OS: All
Status: UNCONFIRMED
Severity: normal
Priority: medium
Component: Writer
Assignee: [email protected]
Reporter: [email protected]
Suggested changes in saving file as html
Start with the erasor. This deletes lots of unnecessary tag attributes.
Almost all other tag attributes also need deleting
Remove numbering from headings, for example <ol><li><h4> heading
</h4></li></ol>
Remove footnotes.
Start each heading, paragraph, line item, etc. on a new line of code.
Start each line of code with the opening html tag (e.g. <h1> <h2> <h3> <h4> <p>
<li> <td>) and close the line of code with its closing tag. (e.g. </h1> </h2>
</h3> </h4> </p> </li> </td>)
Remove all borders on table cells.
Replace <li><p> with <li>
Replace </p></li><p> with </li>
Replace <td><p> with <td>
Replace </p></td><p> with </td>
Replace </p></th><p> with </th>
If there is no longer a Table of Contents, remove toc links and anchors
If there is a Table of Contents, create links to sections
Remove class="western"
--
You are receiving this mail because:
You are the assignee for the bug.