일반 단락은 일반 목록 항목 아래에 행복하게 들여 쓰기되지만 ([SPACE] 막대를 사용하여 첫 번째 줄을 들여 쓰면 나머지는 함께 사용됩니다.) 코드 블록이 협조하고 싶지 않다는 것을 알았습니다. 이 문제를 해결할 방법이 있습니까?
지금, 이것은 내가 가진 것입니다 :
- [ ] My plain list item
Nicely indented paragraph, blah blah blah blah blah blah blah blah
blah blah blah blah blah blah blah blah blah blah blah blah blah blah
blah blah blah.
#+BEGIN_SRC elisp
; Uncooperative code block -> notice that only the first line indents.
(lambda () (do-something-amazing))
(blah-blah-blah)
#+END_SRC
나는 이것을 얻고 싶다 :
- [ ] My plain list item
Nicely indented paragraph, blah blah blah blah blah blah blah blah
blah blah blah blah blah blah blah blah blah blah blah blah blah blah
blah blah blah.
#+BEGIN_SRC elisp
; Happily indented code block -> notice that all code follows with :)
(lambda () (do-something-amazing))
(blah-blah-blah)
#+END_SRC
감사. org-indent-mode를 사용하고 있습니다. 소스 코드 블록을 제외한 모든 작업에 적합합니다. 잘못했을 수 있습니다. org-indent로 소스 코드를 들여 쓸 수 있습니까?
—
Adam
소스 코드 블록은 나를 위해 잘 들여 쓰지만, 일반 목록이 아닌 헤더 아래에만 있습니다.
—
Adam
(org-list-in-valid-context-p)
src 블록에서 기본적으로 org는 src 블록이 목록이 허용되는 컨텍스트가되기를 원하지 않습니다. 변화는 org-list-forbidden-blocks
그것이 아니다, 그 변경 될 수 defcustom
있지만.
대답이 도움이 되었습니까? 현재 답변을 업데이트하거나 새 답변을 추가하게되어 기쁩니다. 질문 해 주셔서 감사합니다!
—
Melioratus
org-indent-mode
.