Org-Mode Details To Accompany Questions

The details that are likely to help questions to be answered on the org mailing list.

(print emacs-version)
(print org-version)
(print (pp-to-string org-babel-default-header-args))
(print (pp-to-string org-babel-default-header-args:R))

=

Eg:

"24.3.1"
"8.2.10"
"((:eval . \"always\")
 (:padline . \"yes\")
 (:noweb . \"no-export\")
 (:exports . \"both\")
 (:results . \"output replace\")
 (:comments . \"noweb\")
 (:session . \"none\")
 (:cache . \"no\")
 (:hlines . \"no\")
 (:tangle . \"no\"))
"
"((:session . \"*R*\"))
"

2 thoughts on “Org-Mode Details To Accompany Questions”

  1. Excellent idea!
    Since you are using org mode blocks, directing the output to results makes sense:
    #+begin_src emacs-lisp :results output
    (print emacs-version)
    (print org-version)
    (print (pp-to-string org-babel-default-header-args))
    (print (pp-to-string org-babel-default-header-args:R))
    #+end_src

  2. HEIKKI:
    Totally agreed. My personal config is listed in the results in the post.

Leave a Reply

Your email address will not be published. Required fields are marked *