<html>
<head>
<base href="https://bugs.documentfoundation.org/">
</head>
<body>
<p>
<div>
<b><a class="bz_bug_link
bz_status_UNCONFIRMED "
title="UNCONFIRMED - Underline words from HTML document do not appear"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=132770#c2">Comment # 2</a>
on <a class="bz_bug_link
bz_status_UNCONFIRMED "
title="UNCONFIRMED - Underline words from HTML document do not appear"
href="https://bugs.documentfoundation.org/show_bug.cgi?id=132770">bug 132770</a>
from <span class="vcard"><a class="email" href="mailto:hi-angel@yandex.ru" title="Konstantin Kharlamov <hi-angel@yandex.ru>"> <span class="fn">Konstantin Kharlamov</span></a>
</span></b>
<pre>Okay, so a couple of updates:
1. The gdb taking GBs of memory turned out to be a bug in gdb
<a href="https://sourceware.org/bugzilla/show_bug.cgi?id=25965">https://sourceware.org/bugzilla/show_bug.cgi?id=25965</a>
2. You can make it work with one of the following changes:
* replace `ins` with `u` tag
* add into html file (or to a separate CSS file) a style for `ins` tag as
follows:
<style>
ins {
text-decoration: underline;
}
</style>
What basically happens is that html parser queries known styles by executing
`pCFormat = m_pDoc->FindCharFormatByName( "ins" )`. It does not find one, and
creates one with default text property.
I'll try to see if there is any obvious solution, but I suspect solution should
be creating default "underlined" style for `ins` tag but using it *only* when
there's no override in a CSS. Since I don't know the code nor where to look at
examples, I might have a problem with implementing that.</pre>
</div>
</p>
<hr>
<span>You are receiving this mail because:</span>
<ul>
<li>You are the assignee for the bug.</li>
</ul>
</body>
</html>