From 15276c64fb5a2db39b05c42641bf58af92808394 Mon Sep 17 00:00:00 2001 From: Rory Yorke Date: Sat, 31 May 2025 12:51:42 +0200 Subject: [PATCH] In table hline, prefix rule with a space character This makes the header-separator table row align with the rest of the table. --- ox-gfm.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ox-gfm.el b/ox-gfm.el index 84665cb..1025b62 100644 --- a/ox-gfm.el +++ b/ox-gfm.el @@ -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)))) (when (< max-width 1) (setq max-width 1)) - (make-string max-width char)))) + (concat " " (make-string max-width char))))) ;;;; Table-Cell