61 lines
972 B
Org Mode
61 lines
972 B
Org Mode
#+TITLE: Testing Litorgy Export
|
|
#+OPTIONS: toc:2 ^:nil
|
|
|
|
* all
|
|
|
|
** full source blocks
|
|
|
|
*** ruby
|
|
|
|
source block is here, but is shouldn't be exported...
|
|
|
|
#+begin_src ruby :results silent :exports none
|
|
class Schulte
|
|
def initialize
|
|
puts :eric
|
|
end
|
|
end
|
|
#+end_src
|
|
|
|
The source block is here, and lets see the code
|
|
|
|
#+begin_src ruby :results silent :exports code
|
|
class Schulte
|
|
def initialize
|
|
puts :eric
|
|
end
|
|
end
|
|
#+end_src
|
|
|
|
This is a source block, and lets see the results
|
|
#+begin_src ruby :exports results :results replace
|
|
:the_results
|
|
#+end_src
|
|
|
|
lets see the source, and results for a ruby array
|
|
#+begin_src ruby :results replace
|
|
[1, 2, 3, 4].map{ |n| n * 2 }
|
|
#+end_src
|
|
|
|
|
|
*** emacs-lisp
|
|
|
|
a table
|
|
|
|
#+begin_src emacs-lisp
|
|
'(1 2 3 4 5)
|
|
#+end_src
|
|
|
|
hidden
|
|
|
|
#+begin_src emacs-lisp :exports none :results silent
|
|
9
|
|
#+end_src
|
|
|
|
|
|
** in-line source blocks
|
|
|
|
This is an inline source code block src_ruby{1 + 6}. And another
|
|
source block with text output src_emacs-lisp{"eric"}.
|
|
|