eschulte / epresent

Presentations in Emacs -- based on Org-mode
183 stars 50 forks source link

Lines demarcating source blocks are hidden but the line break isn't #18

Closed tmalsburg closed 9 years ago

tmalsburg commented 9 years ago

Consider this org fragment:

This is text before the source block.
#+begin_src
This is in the source block.
#+end_src
This is after the block.

In presentation mode this is displayed as:

This is text before the source block.

This is in the source block.

This is after the block.

The expected result is:

This is text before the source block.
This is in the source block.
This is after the block.

The benefit of hiding the empty lines is that it gives the user full control over the vertical spacing. Currently I end up with empty lines that do nothing but wasting screen real estate.

tmalsburg commented 9 years ago

This was fixed in 90c49fb1973e0095a658a139ddeb67ee6bc265d3. Thanks!