From: jfbu <jf...@us...> - 2022-08-06 13:41:21
|
--- ** [bugs:#454] [DOC] borderless option said to remove borders "around" table but removes every border** **Status:** open **Created:** Sat Aug 06, 2022 01:41 PM UTC by jfbu **Last Updated:** Sat Aug 06, 2022 01:41 PM UTC **Owner:** nobody I tested [borderless](https://docutils.sourceforge.io/docs/user/config.html#table-style) with `rst2html.py` and found out that produced table was literally "borderless" which contradicted what I had understood from the documentation: ``` borderless No borders around the table. ``` I was expecting no top, right, botttom and left borders but *all* borders of *all cells* are removed. However I am not educated enough in Tables so maybe my expectation was too ill-informed. Or I misunderstand "around", as I am not native speaker. --- 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. |
From: Günter M. <mi...@us...> - 2022-08-27 19:27:28
|
On 2022-08-06, jfbu via Docutils-develop wrote in gmane.text.docutils.devel: > I was expecting no top, right, botttom and left borders but *all* > borders of *all cells* are removed. However I am not educated enough > in Tables so maybe my expectation was too ill-informed. Or I > misunderstand "around", as I am not native speaker. You are right, the documentation is misleading (while the name should say it). How about borderless Remove all borders. ? --- ** [bugs:#454] [DOC] borderless option said to remove borders "around" table but removes every border** **Status:** open **Created:** Sat Aug 06, 2022 01:41 PM UTC by jfbu **Last Updated:** Sat Aug 06, 2022 01:41 PM UTC **Owner:** nobody I tested [borderless](https://docutils.sourceforge.io/docs/user/config.html#table-style) with `rst2html.py` and found out that produced table was literally "borderless" which contradicted what I had understood from the documentation: ``` borderless No borders around the table. ``` I was expecting no top, right, botttom and left borders but *all* borders of *all cells* are removed. However I am not educated enough in Tables so maybe my expectation was too ill-informed. Or I misunderstand "around", as I am not native speaker. --- 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. |
From: jfbu <jf...@us...> - 2022-08-27 21:10:33
|
LGTM. I used `no lines whatsoever` in a PR at Sphinx adding ``latex_table_style`` configuration to describe there the effect of ``'borderless'``. --- ** [bugs:#454] [DOC] borderless option said to remove borders "around" table but removes every border** **Status:** open **Created:** Sat Aug 06, 2022 01:41 PM UTC by jfbu **Last Updated:** Sat Aug 06, 2022 01:41 PM UTC **Owner:** nobody I tested [borderless](https://docutils.sourceforge.io/docs/user/config.html#table-style) with `rst2html.py` and found out that produced table was literally "borderless" which contradicted what I had understood from the documentation: ``` borderless No borders around the table. ``` I was expecting no top, right, botttom and left borders but *all* borders of *all cells* are removed. However I am not educated enough in Tables so maybe my expectation was too ill-informed. Or I misunderstand "around", as I am not native speaker. --- 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. |
From: Adam T. <aa-...@us...> - 2022-08-27 21:14:03
|
Perhaps: "No borders around the table or cells" or "No borders around and within the table"? A --- ** [bugs:#454] [DOC] borderless option said to remove borders "around" table but removes every border** **Status:** open **Created:** Sat Aug 06, 2022 01:41 PM UTC by jfbu **Last Updated:** Sat Aug 27, 2022 09:10 PM UTC **Owner:** nobody I tested [borderless](https://docutils.sourceforge.io/docs/user/config.html#table-style) with `rst2html.py` and found out that produced table was literally "borderless" which contradicted what I had understood from the documentation: ``` borderless No borders around the table. ``` I was expecting no top, right, botttom and left borders but *all* borders of *all cells* are removed. However I am not educated enough in Tables so maybe my expectation was too ill-informed. Or I misunderstand "around", as I am not native speaker. --- 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. |
From: Günter M. <mi...@us...> - 2022-08-28 21:12:20
|
On 2022-08-27, Adam Turner via Docutils-develop wrote in gmane.text.docutils.devel: > Perhaps: "No borders around the table or cells" or "No borders around > and within the table"? The LaTeX writer documentation (latex.txt) has the "minimal version" borderless No borders. I'd prefer the more terse alternative "No borders around table cells". For me, "around cells" instead of "between cells" implies no border around the table. But I don't know how this is seen by native English speakers. After all, it is easy to try out: Run `docutils` on :: == == 00 01 10 11 == == .. class:: borderless == == 00 01 10 11 == == and spot the difference. --- ** [bugs:#454] [DOC] borderless option said to remove borders "around" table but removes every border** **Status:** open **Created:** Sat Aug 06, 2022 01:41 PM UTC by jfbu **Last Updated:** Sat Aug 27, 2022 09:14 PM UTC **Owner:** nobody I tested [borderless](https://docutils.sourceforge.io/docs/user/config.html#table-style) with `rst2html.py` and found out that produced table was literally "borderless" which contradicted what I had understood from the documentation: ``` borderless No borders around the table. ``` I was expecting no top, right, botttom and left borders but *all* borders of *all cells* are removed. However I am not educated enough in Tables so maybe my expectation was too ill-informed. Or I misunderstand "around", as I am not native speaker. --- 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. |
From: Günter M. <mi...@us...> - 2022-09-13 10:30:45
|
- **status**: open --> closed-fixed - **Comment**: Fixed in [r9124]. Thank you for reporting. --- ** [bugs:#454] [DOC] borderless option said to remove borders "around" table but removes every border** **Status:** closed-fixed **Created:** Sat Aug 06, 2022 01:41 PM UTC by jfbu **Last Updated:** Sat Aug 27, 2022 09:14 PM UTC **Owner:** nobody I tested [borderless](https://docutils.sourceforge.io/docs/user/config.html#table-style) with `rst2html.py` and found out that produced table was literally "borderless" which contradicted what I had understood from the documentation: ``` borderless No borders around the table. ``` I was expecting no top, right, botttom and left borders but *all* borders of *all cells* are removed. However I am not educated enough in Tables so maybe my expectation was too ill-informed. Or I misunderstand "around", as I am not native speaker. --- 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. |