https://bugs.documentfoundation.org/show_bug.cgi?id=132770

--- Comment #2 from Konstantin Kharlamov <hi-an...@yandex.ru> ---
Okay, so a couple of updates:

1. The gdb taking GBs of memory turned out to be a bug in gdb
https://sourceware.org/bugzilla/show_bug.cgi?id=25965
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.

-- 
You are receiving this mail because:
You are the assignee for the bug.
_______________________________________________
Libreoffice-bugs mailing list
Libreoffice-bugs@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-bugs

Reply via email to