# Un tableau s'affiche en dehors des limites du post/commentaire

**URL:** https://meta.discourse.org/t/a-table-renders-outside-the-boundaries-of-the-post-comment/375689
**Category:** UX
**Created:** [Juillet 24, 2025, 7:48 UTC](https://meta.discourse.org/t/a-table-renders-outside-the-boundaries-of-the-post-comment/375689 "2025-07-24T19:48:24Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![roke\_julian\_lockhart](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/roke_julian_lockhart/32/540179_2.png) [@roke\_julian\_lockhart](https://meta.discourse.org/u/roke_julian_lockhart)
#### Post date: [Juillet 24, 2025, 7:48 UTC](https://meta.discourse.org/t/a-table-renders-outside-the-boundaries-of-the-post-comment/375689/1 "2025-07-24T19:48:24Z")

</div>

#### Contexte

Ce problème a été découvert à l’origine sur :

> **[How to add the "Windows Boot Loader" to the GRUB2 list?](https://discussion.fedoraproject.org/t/how-to-add-the-windows-boot-loader-to-the-grub2-list/159594/39)**
>
> I had a brilliant comment that demonstrated the differences between my brother’s configuration and mine, considering that they are identical except for GPU, yet his has the Windows Bootloader entry visible in GRUB’s TUI. However, it broke...

…d’où son contenu.

Cependant, cette méthode d’intégration de HTML5 dans des tableaux Markdown est courante : [[1]](#fn1)

> <https://stackoverflow.com/questions/28508141/code-block-inside-table-row-in-markdown/60502719#60502719>

#### Exemple reproductible

```Markdown
<p>Voici quelque chose pour vous faire réfléchir !</p>
<table>
<thead>
<tr>
<th></th>
<th>Le mien</th>
<th>Celui de mon frère</th>
</tr>
</thead>
<tbody>
<tr>
<th><code>kinfo</code></th>
<td>

~~~YAML
Système d'exploitation : Fedora Linux 42
Version de KDE Plasma : 6.4.3
Version des Frameworks KDE : 6.16.0
Version de Qt : 6.9.1
Version du noyau : 6.15.7-200.fc42.x86_64 (64 bits)
Plateforme graphique : Wayland
Processeurs : 12 × AMD Ryzen 5 7600X 6-Core Processor
Mémoire : 32 Go de RAM (30,4 Go utilisables)
Processeur graphique 1 : AMD Radeon RX 5700
Processeur graphique 2 : AMD Radeon Graphics
Fabricant : ASRock
Nom du produit : X670E Taichi
~~~

</td>
<td>

~~~YAML
Système d'exploitation : Fedora Linux 42
Version de KDE Plasma : 6.4.3
Version des Frameworks KDE : 6.16.0
Version de Qt : 6.9.1
Version du noyau : 6.15.7-200.fc42.x86_64 (64 bits)
Plateforme graphique : Wayland
Processeurs : 12 × AMD Ryzen 5 7600X 6-Core Processor
Mémoire : 32 Go de RAM (30,4 Go utilisables)
Processeur graphique 1 : AMD Radeon RX 7900 XTX
Processeur graphique 2 : AMD Radeon Graphics
Fabricant : ASRock
Nom du produit : X670E Taichi
~~~

</td>
</tr>
<tr>
<th><code>sudo tree /boot/efi</code></th>
<td>

~~~tree
/boot/efi
├── EFI
│ ├── BOOT
│ │ ├── BOOTIA32.EFI
│ │ ├── BOOTX64.EFI
│ │ ├── fbia32.efi
│ │ └── fbx64.efi
│ └── fedora
│ ├── BOOTIA32.CSV
│ ├── BOOTX64.CSV
│ ├── gcdia32.efi
│ ├── gcdx64.efi
│ ├── grub.cfg
│ ├── grubia32.efi
│ ├── grubx64.efi
│ ├── mmia32.efi
│ ├── mmx64.efi
│ ├── shim.efi
│ ├── shimia32.efi
│ └── shimx64.efi
├── mach_kernel
├── System
│ └── Library
│ └── CoreServices
│ └── SystemVersion.plist
└── System Volume Information

8 répertoires, 18 fichiers
~~~

</td>
<td>

~~~tree
/boot/efi
├── EFI
│ ├── BOOT
│ │ ├── BOOTIA32.EFI
│ │ ├── BOOTX64.EFI
│ │ ├── fbia32.efi
│ │ └── fbx64.efi
│ └── fedora
│ ├── BOOTIA32.CSV
│ ├── BOOTX64.CSV
│ ├── gcdia32.efi
│ ├── gcdx64.efi
│ ├── grub.cfg
│ ├── grubia32.efi
│ ├── grubx64.efi
│ ├── mmia32.efi
│ ├── mmx64.efi
│ ├── shim.efi
│ ├── shimia32.efi
│ └── shimx64.efi
├── mach_kernel
├── System
│ └── Library
│ └── CoreServices
│ └── SystemVersion.plist
└── System Volume Information

8 répertoires, 18 fichiers
~~~

</td>
</tr>
<tr>
<th><code>cat /etc/default/grub</code></th>
<td>

~~~sh
cat /etc/default/grub
GRUB_TIMEOUT="15"
  # Original : GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
  # Original : Identique
GRUB_DEFAULT="saved"
  # Original : Identique
GRUB_DISABLE_SUBMENU="true"
  # Original : Inconnu
GRUB_TERMINAL_OUTPUT="gfxterm"
  # Original : GRUB_TERMINAL_OUTPUT="console"
GRUB_CMDLINE_LINUX=""
  # Original : GRUB_CMDLINE_LINUX="rhgb quiet"
GRUB_DISABLE_RECOVERY="false"
  # Original : GRUB_DISABLE_RECOVERY="true"
GRUB_ENABLE_BLSCFG="true"
  # Original : Inconnu
  # Raison : https://discussion.fedoraproject.org/t/missing-boot-entries-with-grub-enable-blscfg-true/70805/3
GRUB_GFXMODE="2560x1440,auto"
  # Original : Aucun
GRUB_DISABLE_OS_PROBER="true"
  # Original : Aucun
  # Raison : https://github.com/MaddieM4/os-prober/issues/5#issue-777438588
~~~

</td>
<td>

~~~sh
GRUB_TIMEOUT=25
GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
GRUB_DEFAULT=saved
GRUB_DISABLE_SUBMENU=true
GRUB_TERMINAL_OUTPUT="gfxterm"
GRUB_CMDLINE_LINUX=""
GRUB_DISABLE_RECOVERY="false"
GRUB_ENABLE_BLSCFG=true
GRUB_GFXMODE=2560x1440,auto
~~~

</td>
</tr>
<tr>
<th><code>sudo fdisk -l /dev/nvme2n1</code></th>
<td>

~~~YAML
Disque /dev/nvme2n1 : 1,82 TiB, 2000398934016 octets, 3907029168 secteurs
Modèle du disque : addlink M.2 PCIE G4x4 NVMe              
Unités : secteurs de 1 * 512 = 512 octets
Taille du secteur (logique/physique) : 512 octets / 512 octets
Taille E/S (minimale/optimale) : 512 octets / 512 octets
Type d'étiquette de disque : gpt
Identifiant du disque : BDA1D2E0-E95A-4EB7-9502-BE9E43D64E3D

Périphérique Début Fin Secteurs Taille Type
/dev/nvme2n1p1 2048 3907022847 3907020800 1,8T Système de fichiers Linux
~~~

</td>
<td>

~~~YAML
Disque /dev/nvme2n1 : 1,82 TiB, 2000398934016 octets, 3907029168 secteurs
Modèle du disque : addlink M.2 PCIE G4x4 NVMe              
Unités : secteurs de 1 * 512 = 512 octets
Taille du secteur (logique/physique) : 512 octets / 512 octets
Taille E/S (minimale/optimale) : 512 octets / 512 octets
Type d'étiquette de disque : gpt
Identifiant du disque : 95F62691-D093-4072-8970-7D9108C0A5EE

Périphérique Début Fin Secteurs Taille Type
/dev/nvme2n1p1 2048 206847 204800 100M Système EFI
/dev/nvme2n1p2 206848 239615 32768 16M Réservé Microsoft
/dev/nvme2n1p3 239616 3905492991 3905253376 1,8T Données de base Microsoft
/dev/nvme2n1p4 3905492992 3907026943 1533952 749M Environnement de récupération Windows
~~~

</td>
</tr>
<tr>
<th><code>sudo grub2-emu</code></th>
<td>

https://youtu.be/8JQsz23y2nA

<p>Du moins, vous savez tous qu'il n'apparaît pas pour moi. Je ne pense pas que <code>grub2-emu</code> ait jamais fonctionné, car j'ai une recherche sur ce problème datant de janvier 2025 dans mon historique de navigation.</p>

</td>
<td>

![image|689x310](upload://krAW4TMsuOY98vWqIIs9Jhont9y.png)

Remarquez le « Gestionnaire de démarrage Windows » ?!

</td>
</tr>
</tbody>
</table>

```

…s’affiche comme suit :

 ![image](https://global.discourse-cdn.com/meta/original/4X/8/7/b/87bcc73db1e8e24b40a82235538246f38a54f594.png)

> ****
>
> Pour confirmer que c’est le cas ici :
> 
> > Voici quelque chose pour vous faire réfléchir !
> > 
> > | | Le mien | Celui de mon frère |
> > | --- | --- | --- |
> > | `kinfo` | 
> > 
> > ```YAML
> > Système d'exploitation : Fedora Linux 42
> > Version de KDE Plasma : 6.4.3
> > Version des Frameworks KDE : 6.16.0
> > Version de Qt : 6.9.1
> > Version du noyau : 6.15.7-200.fc42.x86_64 (64 bits)
> > Plateforme graphique : Wayland
> > Processeurs : 12 × AMD Ryzen 5 7600X 6-Core Processor
> > Mémoire : 32 Go de RAM (30,4 Go utilisables)
> > Processeur graphique 1 : AMD Radeon RX 5700
> > Processeur graphique 2 : AMD Radeon Graphics
> > Fabricant : ASRock
> > Nom du produit : X670E Taichi
> > 
> > ```
> > 
> > | 
> > 
> > ```YAML
> > Système d'exploitation : Fedora Linux 42
> > Version de KDE Plasma : 6.4.3
> > Version des Frameworks KDE : 6.16.0
> > Version de Qt : 6.9.1
> > Version du noyau : 6.15.7-200.fc42.x86_64 (64 bits)
> > Plateforme graphique : Wayland
> > Processeurs : 12 × AMD Ryzen 5 7600X 6-Core Processor
> > Mémoire : 32 Go de RAM (30,4 Go utilisables)
> > Processeur graphique 1 : AMD Radeon RX 7900 XTX
> > Processeur graphique 2 : AMD Radeon Graphics
> > Fabricant : ASRock
> > Nom du produit : X670E Taichi
> > 
> > ```
> > 
> > |
> > | `sudo tree /boot/efi` | 
> > 
> > ```tree
> > /boot/efi
> > ├── EFI
> > │ ├── BOOT
> > │ │ ├── BOOTIA32.EFI
> > │ │ ├── BOOTX64.EFI
> > │ │ ├── fbia32.efi
> > │ │ └── fbx64.efi
> > │ └── fedora
> > │ ├── BOOTIA32.CSV
> > │ ├── BOOTX64.CSV
> > │ ├── gcdia32.efi
> > │ ├── gcdx64.efi
> > │ ├── grub.cfg
> > │ ├── grubia32.efi
> > │ ├── grubx64.efi
> > │ ├── mmia32.efi
> > │ ├── mmx64.efi
> > │ ├── shim.efi
> > │ ├── shimia32.efi
> > │ └── shimx64.efi
> > ├── mach_kernel
> > ├── System
> > │ └── Library
> > │ └── CoreServices
> > │ └── SystemVersion.plist
> > └── System Volume Information
> > 
> > 8 répertoires, 18 fichiers
> > 
> > ```
> > 
> > | 
> > 
> > ```tree
> > /boot/efi
> > ├── EFI
> > │ ├── BOOT
> > │ │ ├── BOOTIA32.EFI
> > │ │ ├── BOOTX64.EFI
> > │ │ ├── fbia32.efi
> > │ │ └── fbx64.efi
> > │ └── fedora
> > │ ├── BOOTIA32.CSV
> > │ ├── BOOTX64.CSV
> > │ ├── gcdia32.efi
> > │ ├── gcdx64.efi
> > │ ├── grub.cfg
> > │ ├── grubia32.efi
> > │ ├── grubx64.efi
> > │ ├── mmia32.efi
> > │ ├── mmx64.efi
> > │ ├── shim.efi
> > │ ├── shimia32.efi
> > │ └── shimx64.efi
> > ├── mach_kernel
> > ├── System
> > │ └── Library
> > │ └── CoreServices
> > │ └── SystemVersion.plist
> > └── System Volume Information
> > 
> > 8 répertoires, 18 fichiers
> > 
> > ```
> > 
> > |
> > | `cat /etc/default/grub` | 
> > 
> > ```sh
> > cat /etc/default/grub
> > GRUB_TIMEOUT="15"
> > # Original : GRUB_TIMEOUT=5
> > GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
> > # Original : Identique
> > GRUB_DEFAULT="saved"
> > # Original : Identique
> > GRUB_DISABLE_SUBMENU="true"
> > # Original : Inconnu
> > GRUB_TERMINAL_OUTPUT="gfxterm"
> > # Original : GRUB_TERMINAL_OUTPUT="console"
> > GRUB_CMDLINE_LINUX=""
> > # Original : GRUB_CMDLINE_LINUX="rhgb quiet"
> > GRUB_DISABLE_RECOVERY="false"
> > # Original : GRUB_DISABLE_RECOVERY="true"
> > GRUB_ENABLE_BLSCFG="true"
> > # Original : Inconnu
> > # Raison : https://discussion.fedoraproject.org/t/missing-boot-entries-with-grub-enable-blscfg-true/70805/3
> > GRUB_GFXMODE="2560x1440,auto"
> > # Original : Aucun
> > GRUB_DISABLE_OS_PROBER="true"
> > # Original : Aucun
> > # Raison : https://github.com/MaddieM4/os-prober/issues/5#issue-777438588
> > 
> > ```
> > 
> > | 
> > 
> > ```sh
> > GRUB_TIMEOUT=25
> > GRUB_DISTRIBUTOR="$(sed 's, release .*$,,g' /etc/system-release)"
> > GRUB_DEFAULT=saved
> > GRUB_DISABLE_SUBMENU=true
> > GRUB_TERMINAL_OUTPUT="gfxterm"
> > GRUB_CMDLINE_LINUX=""
> > GRUB_DISABLE_RECOVERY="false"
> > GRUB_ENABLE_BLSCFG=true
> > GRUB_GFXMODE=2560x1440,auto
> > 
> > ```
> > 
> > |
> > | `sudo fdisk -l /dev/nvme2n1` | 
> > 
> > ```YAML
> > Disque /dev/nvme2n1 : 1,82 TiB, 2000398934016 octets, 3907029168 secteurs
> > Modèle du disque : addlink M.2 PCIE G4x4 NVMe              
> > Unités : secteurs de 1 * 512 = 512 octets
> > Taille du secteur (logique/physique) : 512 octets / 512 octets
> > Taille E/S (minimale/optimale) : 512 octets / 512 octets
> > Type d'étiquette de disque : gpt
> > Identifiant du disque : BDA1D2E0-E95A-4EB7-9502-BE9E43D64E3D
> > 
> > Périphérique Début Fin Secteurs Taille Type
> > /dev/nvme2n1p1 2048 3907022847 3907020800 1,8T Système de fichiers Linux
> > 
> > ```
> > 
> > | 
> > 
> > ```YAML
> > Disque /dev/nvme2n1 : 1,82 TiB, 2000398934016 octets, 3907029168 secteurs
> > Modèle du disque : addlink M.2 PCIE G4x4 NVMe              
> > Unités : secteurs de 1 * 512 = 512 octets
> > Taille du secteur (logique/physique) : 512 octets / 512 octets
> > Taille E/S (minimale/optimale) : 512 octets / 512 octets
> > Type d'étiquette de disque : gpt
> > Identifiant du disque : 95F62691-D093-4072-8970-7D9108C0A5EE
> > 
> > Périphérique Début Fin Secteurs Taille Type
> > /dev/nvme2n1p1 2048 206847 204800 100M Système EFI
> > /dev/nvme2n1p2 206848 239615 32768 16M Réservé Microsoft
> > /dev/nvme2n1p3 239616 3905492991 3905253376 1,8T Données de base Microsoft
> > /dev/nvme2n1p4 3905492992 3907026943 1533952 749M Environnement de récupération Windows
> > 
> > ```
> > 
> > |
> > | `sudo grub2-emu` | 
> > [![](https://global.discourse-cdn.com/meta/original/4X/2/2/4/2243c72a805930194a543d89c127e549da8bf2bf.jpeg "A Demonstration That `grub2-emu` Does Not Operate") ](https://www.youtube.com/watch?v=8JQsz23y2nA)
> > 
> > Du moins, vous savez tous qu'il n'apparaît pas pour moi. Je ne pense pas que `grub2-emu` ait jamais fonctionné, car j'ai une recherche sur ce problème datant de janvier 2025 dans mon historique de navigation.
> > 
> > | 
> > 
> > ![image](https://global.discourse-cdn.com/meta/original/4X/8/f/4/8f4a0da5b43dcb42bb63737ea509f581014b582c.png)
> > 
> > Remarquez le « Gestionnaire de démarrage Windows » ?!
> > 
> > |

* * *

1. [`stackoverflow.com/revisions/60502719/3`](https://stackoverflow.com/revisions/60502719/3#:~:text=Inside%20tables%2C%20leave%20a%20blank%20line%20after%20the%20%3Ctd%3E%20and%20one%20before%20the%20%3C/td%3E%2C%20otherwise%20the%20Markdown%20inside%20won't%20be%20displayed.) [↩︎](#fnref1)

---

<div class="post-metadata">

### Author: ![sam](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/sam/32/102149_2.png) [@sam](https://meta.discourse.org/u/sam)
#### Post date: [Juillet 25, 2025, 3:36 UTC](https://meta.discourse.org/t/a-table-renders-outside-the-boundaries-of-the-post-comment/375689/2 "2025-07-25T03:36:13Z")

</div>

Le problème semble légitime, mais je pense qu’il correspond mieux à #Contribute > UX, je le déplace donc là-bas.

---

<div class="post-metadata">

### Author: ![chapoi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/chapoi/32/537252_2.png) [@chapoi](https://meta.discourse.org/u/chapoi)
#### Post date: [Août 4, 2025, 9:58 UTC](https://meta.discourse.org/t/a-table-renders-outside-the-boundaries-of-the-post-comment/375689/3 "2025-08-04T09:58:33Z")

</div>

Ah, j’adore les vieilles astuces de comportement de tableau.

Ajouté une correction ici :

> <https://github.com/discourse/discourse/pull/34061>
>
> Fix for meta report
> https://meta.discourse.org/t/a-table-renders-outside-the-bo…undaries-of-the-post-comment/375689
> 
> Broken overflow gets replaced by horizontal scrolling within the table cells. Not ideal either, but better than before and not much alternatives afaik.
> 
> | Normal (before) | With fixed layout (after) |
> |--------|--------|
> | \<img width="754" height="769" alt="CleanShot 2025-08-04 at 11 49 29" src="https://github.com/user-attachments/assets/68d040d6-2e0c-45a8-90da-0879d142f1ba" /\> | \<img width="789" height="751" alt="CleanShot 2025-08-04 at 11 56 09" src="https://github.com/user-attachments/assets/d1e2439b-0a5c-46ce-a282-e205e687f5a1" /\> |

Toujours pas élégant, mais je ne pense pas que nous puissions obtenir quelque chose de plus souhaitable que cela (je serais ravi d’être prouvé le contraire), et au moins tout le contenu est maintenant accessible.

---

<div class="post-metadata">

### Author: ![chapoi](https://sea3.discourse-cdn.com/meta/user_avatar/meta.discourse.org/chapoi/32/537252_2.png) [@chapoi](https://meta.discourse.org/u/chapoi)
#### Post date: [Août 9, 2025, 2:00 UTC](https://meta.discourse.org/t/a-table-renders-outside-the-boundaries-of-the-post-comment/375689/4 "2025-08-09T14:00:18Z")

</div>

Ce sujet a été automatiquement fermé après 5 jours. Les nouvelles réponses ne sont plus autorisées.
