Re: [O] Best way to generate textile from orgmode ?

2014-03-01 Thread Bastien
Hi Yasushi,

Yasushi SHOJI  writes:

> https://github.com/yashi/org-textile

Great, thanks for sharing this!

-- 
 Bastien



Re: [O] Best way to generate textile from orgmode ?

2014-02-16 Thread Yasushi SHOJI
Hi Marc,

# way too late to reply but...

At Thu, 11 Apr 2013 22:11:49 +0200,
Marc-Oliver Ihm wrote:
> 
> i would like to convert orgmode to textile (which is used within confluence 
> wiki).

I was hoping that someone's gonna beat me to it. but hey, it's much
fun to write elisp than textile (it's redmine in my case ;-p).

https://github.com/yashi/org-textile

Only some basic formats are supported right now, but quite useful for
me, at least.  Hope it is as well for you.

It's also in melpa, thanks to @purcell.

Best,
-- 
yashi



Re: [O] Best way to generate textile from orgmode ?

2013-04-16 Thread Suvayu Ali
On Tue, Apr 16, 2013 at 10:43:39AM +0200, Nicolas Goaziou wrote:
> Suvayu Ali  writes:
> 
> > On Fri, Apr 12, 2013 at 07:36:26AM +0200, Bastien wrote:
> >> For this you need to define a new derived exporter from 'ascii.
> >> 
> >> Get a fresh clone of Org and see how this is done in ox-md.el,
> >> which create a MarkDown exporter by deriving it from the ascii
> >> one.
> >
> > Actually ox-md derives from ox-html.  It was not clear to me why that is
> > the case though.
> 
> Simple. Markdown syntax supports raw HTML. So anything not supported by
> Markdown can be written as HTML.

Simple indeed!  I did not know that bit of information.

Thanks,

-- 
Suvayu

Open source is the future. It sets us free.



Re: [O] Best way to generate textile from orgmode ?

2013-04-16 Thread Nicolas Goaziou
Suvayu Ali  writes:

> On Fri, Apr 12, 2013 at 07:36:26AM +0200, Bastien wrote:
>> For this you need to define a new derived exporter from 'ascii.
>> 
>> Get a fresh clone of Org and see how this is done in ox-md.el,
>> which create a MarkDown exporter by deriving it from the ascii
>> one.
>
> Actually ox-md derives from ox-html.  It was not clear to me why that is
> the case though.

Simple. Markdown syntax supports raw HTML. So anything not supported by
Markdown can be written as HTML.


Regards,

-- 
Nicolas Goaziou



Re: [O] Best way to generate textile from orgmode ?

2013-04-15 Thread Suvayu Ali
On Fri, Apr 12, 2013 at 07:36:26AM +0200, Bastien wrote:
> For this you need to define a new derived exporter from 'ascii.
> 
> Get a fresh clone of Org and see how this is done in ox-md.el,
> which create a MarkDown exporter by deriving it from the ascii
> one.

Actually ox-md derives from ox-html.  It was not clear to me why that is
the case though.  I would have thought ox-ascii is the obvious choice.
Only reason I could think of was referencing/linking is more natural
with ox-html.

-- 
Suvayu

Open source is the future. It sets us free.



Re: [O] Best way to generate textile from orgmode ?

2013-04-12 Thread Marc-Oliver Ihm

Hm; good reply.
I will try ...

best regards, Marc

Am 12.04.2013 15:09, schrieb Christian Egli:

Bastien  writes:


Hi Marc-Oliver,

Marc-Oliver Ihm  writes:


i would like to convert orgmode to textile (which is used within confluence 
wiki).

What is the best way to do this ?


The best way would be to write a textile exporter.


I agree that this would be for the benefit of everyone. But you could
also just export to md and use pandoc to convert to textile.

Christian






Re: [O] Best way to generate textile from orgmode ?

2013-04-12 Thread Christian Egli
Bastien  writes:

> Hi Marc-Oliver,
>
> Marc-Oliver Ihm  writes:
>
>> i would like to convert orgmode to textile (which is used within confluence 
>> wiki).
>>
>> What is the best way to do this ?
>
> The best way would be to write a textile exporter.

I agree that this would be for the benefit of everyone. But you could
also just export to md and use pandoc to convert to textile.

Christian

-- 
Christian Egli
Swiss Library for the Blind, Visually Impaired and Print Disabled
Grubenstrasse 12, CH-8045 Zürich, Switzerland




Re: [O] Best way to generate textile from orgmode ?

2013-04-11 Thread Bastien
Hi Marc-Oliver,

Marc-Oliver Ihm  writes:

> i would like to convert orgmode to textile (which is used within confluence 
> wiki).
>
> What is the best way to do this ?

The best way would be to write a textile exporter.

For this you need to define a new derived exporter from 'ascii.

Get a fresh clone of Org and see how this is done in ox-md.el,
which create a MarkDown exporter by deriving it from the ascii
one.

Also note there is contrib/lisp/ox-confluence.el by Sébastien
Delafond which can be used for Confluence Wiki.

Hope that helps,

-- 
 Bastien



[O] Best way to generate textile from orgmode ?

2013-04-11 Thread Marc-Oliver Ihm

Hello list,

i would like to convert orgmode to textile (which is used within confluence 
wiki).

What is the best way to do this ?

New exporter already or external programs ?

Thanx and best regards,
Marc