In table hline, prefix rule with a space character

This makes the header-separator table row align with the rest of the
table.
This commit is contained in:
Rory Yorke 2025-05-31 12:51:42 +02:00
parent 4f774f13d3
commit 15276c64fb

View File

@ -153,7 +153,7 @@ INFO is a plist used as a communication channel."
(let ((max-width (max 3 (org-gfm-table-col-width table col info)))) (let ((max-width (max 3 (org-gfm-table-col-width table col info))))
(when (< max-width 1) (when (< max-width 1)
(setq max-width 1)) (setq max-width 1))
(make-string max-width char)))) (concat " " (make-string max-width char)))))
;;;; Table-Cell ;;;; Table-Cell