Re: [O] New Exporter: plain list depth

2013-04-23 Thread Yasushi SHOJI
Hi, At Mon, 22 Apr 2013 00:10:25 +0200, Nicolas Goaziou wrote: > > Yasushi SHOJI writes: > > > To generate "--" at the list 2.1, I'd like to find out the list 2.1 is > > at depth 2, so that I can use (make-string 2 ?-) for my bullet. > > Something like the following should work, assuming ITEM

Re: [O] New Exporter: plain list depth

2013-04-21 Thread Nicolas Goaziou
Hello, Yasushi SHOJI writes: > What is the best way to know the depth of list entries when I writing > an exporter back-end? > > let's say I have: > > #+BEGIN_SRC org > * headline 1 > - list 1 > - list 2 > - list 2.1 > #+END_SRC > > I'd like to convert it to: > > #+BEGIN_EXAMPLE

[O] New Exporter: plain list depth

2013-04-21 Thread Yasushi SHOJI
Hi, What is the best way to know the depth of list entries when I writing an exporter back-end? let's say I have: #+BEGIN_SRC org * headline 1 - list 1 - list 2 - list 2.1 #+END_SRC I'd like to convert it to: #+BEGIN_EXAMPLE * headline 1 - list 1 - list 2 -- list 2.1 #+