I want to append \n
to specific easy-template
before 9.2 I could:
(setq org-structure-template-alist
'(("s" "#+BEGIN_SRC ?\n\n#+END_SRC\n")
("e" "#+BEGIN_EXAMPLE\n?\n#+END_EXAMPLE\n")
("q" "#+BEGIN_QUOTE\n?\n#+END_QUOTE\n")
("v" "#+BEGIN_VERSE\n?\n#+END_VERSE\n")
("V" "#+BEGIN_VERBATIM\n?\n#+END_VERBATIM\n")))
the new value looks like this
Value: (("a" . "export ascii")
("c" . "center")
("C" . "comment")
("e" . "example")
("E" . "export")
("h" . "export html")
("l" . "export latex")
("q" . "quote")
("s" . "src")
("v" . "verse"))
more abstract but I can no longer do what I used to do.
any solution?