でくくる
インデントは、 *ブロック* 先頭行のインデント位置からの
インデントに変換される。[[blocks.html]]
#+begin_example
# *非破壊的*
def expand_tab( str )
str.gsub(/([^\t]{8})|([^\t]*)\t/n) { [$+].pack("A8") }
end
** example の内部は、解釈されないわけね
# 破壊的 [[link]]
def expand_tab!( str )
1 while str.sub!(/(^[^\t]*)\t(\t*)/) { $1 + ' ' * (8-$1.size%8+8*$2.size) }
end
# 破壊的 (2)
def expand_tab!( str )
1 while str.sub!(/\t(\t*)/) {' ' * (8-$~.begin(0)%8+8*$1.size) }
end
#+end_example
#+BEGIN_EXAMPLE -t -w 40
(defun org-xor (a b)
"Exclusive or."
(if a (not b) b))
#+END_EXAMPLE
** Quote
#+BEGIN_QUOTE
blockquote も書ける
#+END_QUOTE
** section 3
- list1
- list1-1
- list2
* options
- H: set the number of headline levels for export
- num: turn on/off section-numbers
- toc: turn on/off table of contents, or set level limit (integer)
- \n: turn on/off line-break-preservation (DOES NOT WORK)
- @: turn on/off quoted HTML tags
- :: turn on/off fixed-width sections
- |: turn on/off tables
- ^: turn on/off TeX-like syntax for sub- and superscripts. If
you write "^:{}", a_{b} will be interpreted, but
the simple a_b will be left as it is.
- -: turn on/off conversion of special strings.
- f: turn on/off footnotes like this[1].
- todo: turn on/off inclusion of TODO keywords into exported text
- pri: turn on/off priority cookies
- tags: turn on/off inclusion of tags, may also be not-in-toc
- <: turn on/off inclusion of any time/date stamps like DEADLINES
- *: turn on/off emphasized text (bold, italic, underlined)
- TeX: turn on/off simple TeX macros in plain text
- LaTeX: turn on/off LaTeX fragments
- skip: turn on/off skipping the text before the first heading
- author: turn on/off inclusion of author name/email into exported file
- creator: turn on/off inclusion of creator info into exported file
- timestamp: turn on/off inclusion creation time into exported file
- d: turn on/off inclusion of drawers
* footnote
[[./footnote.org]]
* Section node
Section node は、Headline から始まり、次のHeadline(又は文末)の直前までを、
子要素に含むノードである。
#+BEGIN_EXAMPLE
Section node
Headline
some other nodes
#+END_EXAMPLE
COMMENT から始まるヘッドラインを持つ Section は、全体をコメントとして扱う。
* Brock nodes
行単位の範囲を持つ要素。
** Headline node
/^\*+ / から始まる行。'*' の数がセクションのレベルを表す。
セクションの開始を示す。
*** Tags
ヘッドラインには、TAGを付けることが出来る。
** Paragraph node
ヘッドラインの次の行から始まり、セクションの最後か、1行以上の空行で終わる部分は、
段落として扱う。段落中で、改行させたい場合には、行末に"\\"を置く。
: #+BEGIN_VERSE 〜 #+END_VERSE
で囲われた部分は、改行が保存される。
[[file:./verse.org][verse example]] [[./verse.html][html]]
#+BEGIN_EXAMPLE
...
...
#+END_EXAMPLE
の様に、展開される様だ。
** Whiteline node
空行のノード。
パラグラフや、その他のブロックの終端を示す。
インデントのチェックが必要か?
** Block nodes
#+begin 〜 #+end ブロック。
*** EXAMPLE
#+BEGIN_EXAMPLE
: #+BEGIN_EXMPLE
: ...
: #+END_EXAMPLE
#+END_EXAMPLE
you can also start the example lines with a colon followed by a space.
There may also be additional whitespace before the colon:
: : example
EXAMPL ブロックは、