blob: 351b3ec6bf5bed8c29c9e27f4d55b1d307d9c81f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
Leading tabs must be preserved in org mode *src* blocks with the `-i`
flag when pandoc is called with `-p`/`--preserve-tabs`.
```
% pandoc -f org -t native --preserve-tabs
#+begin_src makefile -i
%.o: %.cpp
$(CXX) -o $@ $<
#+end_src
^D
[ CodeBlock
( "" , [ "makefile" ] , [] )
"%.o: %.cpp\n\t$(CXX)\t-o\t$@\t$<\n"
]
```
|