Hi Tony,
Tony Day writes:
> More like a terrible example. Here's a more complicated one out in the
> wild (from https://github.com/renard/o-blog) - templating html creation.
>
> https://gist.github.com/4333546
>
> I imagine patches would be welcome :)
Well... spare you the sweat, because I'm n
On 18 Dec 2012, at 22:55, Bastien wrote:
> Hi Tony,
>
Hi Bastien,
Thanks for the flurry of activity :)
> Tony Day writes:
>
>> Is there an easy way to preserve indentation for a source block taking
>> into account previous blocks?
>
> No. Besides, I don't really see a good case where it
Hi Tony,
Tony Day writes:
> Is there an easy way to preserve indentation for a source block taking
> into account previous blocks?
No. Besides, I don't really see a good case where it would make sense
to split functions across code blocks... surely a lack of imagination :)
--
Bastien
Is there an easy way to preserve indentation for a source block taking
into account previous blocks? For (a silly) example:
* foo
:PROPERTIES:
:tangle: yes
:END:
#+begin_src emacs-lisp
(defun foo ()
#+end_src
#+begin_src emacs-lisp
(bar)
#+end_src
#+begin_src emacs-lisp
)
#+end_src