1 minute read

  • Unordered list items start with ‘-’, ‘+’, or ‘*’10 as bullets.
  • Ordered list items start with a numeral followed by either a period or a right parenthesis11, such as ‘1.’ or ‘1)’12. If you want a list to start with a different value (e.g., 20), start the text of the item with [@20]13. Those constructs can be used in any item of the list in order to enforce a particular numbering.
  • Description list items are unordered list items, and contain the separator ’ :: ’ to distinguish the description term from the description.

2.6 Plain Lists - orgmode.org

org 모드 매뉴얼을 보다 발견했다. 순서 없는 목록(Unordered list), 순서 있는 목록(Ordered list)은 자주 쓴다. 설명 목록(description list)이란 것도 있었네?

#+begin_example
  - Elijah Wood :: He plays Frodo
  - Sean Astin :: He plays Sam, Frodo's friend.  I still remember him very well from his role as Mikey Walsh in The Goonies.
#+end_example

<dl>
  <dt>Elijah Wood</dt><dd>He plays Frodo</dd>
  <dt>Sean Astin</dt><dd>He plays Sam, Frodo&#8217;s friend. I still remember him very well from his role as Mikey Walsh in The Goonies.</dd>
</dl>

HTML로 내보내기(export)도 잘 될까? 해보니 잘 된다.

HTML <dl> 요소는 설명 목록을 나타냅니다. <dl>은 <dt>로 표기한 용어와 <dd> 요소로 표기한 설명 그룹의 목록을 감싸서 설명 목록을 생성합니다. 주로 용어사전 구현이나 메타데이터(키-값 쌍 목록)를 표시할 때 사용합니다.

<dl> - developer.mozilla.org

내보내기가 잘 될 수밖에. HTML에 정의된 태그다. 기억했다가 써먹어야겠다.

C-x C-s C-x C-c