I'm trying to use to org-capture insert tables into a datetree that I use to manage my finances. Below is the capture template I set up for it. Is there a way to make the table be aligned after I finalize the capture? Shankar ----- (setq org-capture-templates '(... ("f" "Add Tables" plain (file+datetree+prompt "~/my-table-file.org") ,(concat "#+TBLNAME: accounts-%<%y%m%d>\n" "| Account | Initial | Final | Calculations |\n" "|-\n" "| Account A | | | |\n" "| Account B | | | |\n" "| Account C | | | |\n") :immediate-finish t :jump-to-captured t) ...))