Steps to reproduce:
- Open Notepad++.
- Open file:
%Program Files%\Notepad++\plugins\NppMarkdownPanel\README.md. (or any other file that contains a markdown table)
- Go to Plugins → MarkdownPanel → Toggle Markdown panel.
- In the Markdown Panel, scroll to the section "Used libs and resources".
- Observe: The table cells are shown as separate squares with space between them.
Current behavior:
- Table cells have visible gaps and look like individual boxes.
Expected behavior:
- Table should render without spacing between cells.
Suggested solution
table {
/* other values */
border-spacing: 0;
border-collapse: collapse;
}