(define-skeleton skel-org-block
"Insert an org source code block"
""
- "#+BEGIN_SRC "
+ "#+begin_src "
_ - "\n\n"
- "#+END_SRC\n")
+ "#+end_src\n")
(define-skeleton skel-org-block-elisp
"Insert an org emacs lisp block"
""
- "#+BEGIN_SRC emacs-lisp\n"
+ "#+begin_src emacs-lisp\n"
_ - \n
- "#+END_SRC\n")
+ "#+end_src\n")
(define-skeleton skel-facility-properties
"Insert the structure for a new facility."
(define-skeleton skel-person-properties
"Insert the org title and filetags for a person."
""
- "#+TITLE: @"
+ "* @"
_ - \n
- "#+FILETAGS: company position\n"
- "#+EMAIL:\n"
- "#+OFFICE:\n"
- "#+CELL:\n")
+ ":properties:\n"
+ ":email:\n"
+ ":office:\n"
+ ":cell:\n"
+ ":end:\n")
(define-skeleton skel-workorder-properties
"Insert the org title and filetags for a workorder"
""
- "#+TITLE: Workorder "
- _ - \n
- "#+FILETAGS: wo# workorder customer city state topics\n")
+ "* TODO Workorder "
+ _ - ":#:customer:city:state:topics:\n")
(provide 're-skeletons)
;;; re-skeletons.el ends here