Sha256: 2e0af499e01d711f59e2b343bc2bad4244d10047d520467121387fb4da83e516

Contents?: true

Size: 1.48 KB

Versions: 2

Compression:

Stored size: 1.48 KB

Contents

Blocks

* paragraphs 
  セクションは、パラグラフから始まる?

  paragraph 1

  paragraph 2
    indent deeper
indent shallower

  paragraph 3
** list only section
    - list1
- list2
* blocks
** Verse
   verse ブロック内では、改行が保存される。//
   <p class="verse"> 〜 </p> でくくる。//

   インデントは、ブロック指定行のインデントを基準に、
   各行のインデント * 2 の &nbsp; に置き換わる。
   #+begin_Verse
    verse line1
      verse line2
    verse line3
   verse line4
   #+end_verse
** Example
   example ブロックは、<pre class="example"></pre>でくくる

   インデントは、 *ブロック* 先頭行のインデント位置からの
   インデントに変換される。[[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

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
org-parse-0.1.2 test/data/blocks.org
org-parse-0.1.1 test/data/blocks.org