emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] insert aligned table using capture template


From: Shankar Rao
Subject: [O] insert aligned table using capture template
Date: Tue, 3 Nov 2015 11:01:12 -0800

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)
        ...))


reply via email to

[Prev in Thread] Current Thread [Next in Thread]