``` % pandoc -f org -t native #+begin_example -i This should retain the four leading spaces #+end_example ^D [CodeBlock ("",["example"],[]) " This should retain the four leading spaces\n"] ``` ``` % pandoc -f org -t html - depth 1 #+name: bob #+begin_example -i Vertical alignment is four spaces beyond the appearance of the word "depth". #+end_example - depth 2 #+begin_example Vertically aligned with the second appearance of the word "depth". #+end_example #+begin_example -i Vertical alignment is four spaces beyond the second appearance of the word "depth". The "begin" portion is a component of this deeper list element, so that guarantees that the entire block must be a component of the inner list element. #+end_example Still inside the inner list element #+name: carrie #+begin_example This belongs to the outer list element, and is aligned accordingly, since the NAME attribute is not indented deeply enough. It is not enough for the BEGIN alone to be aligned deeply if the block is meant to have a NAME. #+end_example Still in the shallower list element since the preceding example block forced the deeper list element to terminate. Outside all lists. ^D

Outside all lists.

```