Am a novice, and just trying my first src emacs lisp.   
Can a results output be included in the middle of a line of text ? 

I've looked through section 14 of the manual. Perhaps the entire 
line must be "concat"ed into the one composite line needed. 

See the "quick brown fox" example below, with src result plonked 
in the middle. 

Also,  is there a switch on setting to avoid the 
"Evaluate this Lisp code on your system?  (yes or no)"
questions being asked at export - to always answer yes to this ? 


* test

#+begin_src emacs-lisp :exports results
  (format-time-string "%a %e %b %Y ")
#+end_src

#+begin_src emacs-lisp :exports none
(defun pt ()
  (format-time-string "%a %e %b %Y "))
#+end_src

The quick brown fox jumps 
#+begin_src emacs-lisp :exports results
  (pt)
#+end_src
over the lazy dog.


_______________________________________________
Emacs-orgmode mailing list
Please use `Reply All' to send replies to the list.
Emacs-orgmode@gnu.org
http://lists.gnu.org/mailman/listinfo/emacs-orgmode

Reply via email to