From: Günter M. <mi...@us...> - 2025-09-22 21:45:31
|
- **status**: open --> open-fixed --- **[bugs:#512] rst2html incorrectly converts tables with Combining Diacritical Marks into HTML** **Status:** open-fixed **Labels:** rst parser **Created:** Tue Sep 16, 2025 07:28 PM UTC by CHÉN Zhé **Last Updated:** Mon Sep 22, 2025 09:44 PM UTC **Owner:** nobody **Attachments:** - [expected.png](https://sourceforge.net/p/docutils/bugs/512/attachment/expected.png) (682 Bytes; image/png) - [result.png](https://sourceforge.net/p/docutils/bugs/512/attachment/result.png) (702 Bytes; image/png) - [test.rst](https://sourceforge.net/p/docutils/bugs/512/attachment/test.rst) (23 Bytes; application/octet-stream) Content of reST file: ~~~ +----+ | ç̌ | +----+ ~~~ Expected results: ~~~ <table border="1" class="docutils"> <colgroup> <col width="100%" /> </colgroup> <tbody valign="top"> <tr><td>ç̌</td> </tr> </tbody> </table> ~~~ Real results: ~~~ <table border="1" class="docutils"> <colgroup> <col width="100%" /> </colgroup> <tbody valign="top"> <tr><td>ç̌ |</td> </tr> </tbody> </table> ~~~ --- Sent from sourceforge.net because doc...@li... is subscribed to https://sourceforge.net/p/docutils/bugs/ To unsubscribe from further messages, a project admin can change settings at https://sourceforge.net/p/docutils/admin/bugs/options. Or, if this is a mailing list, you can unsubscribe from the mailing list. |