[fossil-users] Fossil wiki parsing code

2014-12-01 Thread James Turner
I was curious if anyone has separated the fossil wiki parsing/formatting code from fossil into a standalone library? I was looking to use it in my own project as an alternative to markdown and figured I'd check before doing it myself. Thanks. -- James Turner

Re: [fossil-users] Fossil wiki parsing code

2014-12-01 Thread Richard Hipp
On Mon, Dec 1, 2014 at 1:30 PM, James Turner ja...@calminferno.net wrote: I was curious if anyone has separated the fossil wiki parsing/formatting code from fossil into a standalone library? Never been separated out, as far as I know. But you'll find all the code in the single file named

Re: [fossil-users] Fossil wiki parsing code

2014-12-01 Thread James Turner
On Mon, Dec 01, 2014 at 02:00:45PM -0500, Richard Hipp wrote: On Mon, Dec 1, 2014 at 1:30 PM, James Turner ja...@calminferno.net wrote: I was curious if anyone has separated the fossil wiki parsing/formatting code from fossil into a standalone library? Never been separated out, as far

Re: [fossil-users] Fossil wiki parsing code

2014-12-01 Thread Stephan Beal
On Mon, Dec 1, 2014 at 8:00 PM, Richard Hipp d...@sqlite.org wrote: Never been separated out, as far as I know. But you'll find all the code in the single file named wikiformat.c. It shouldn't be that hard to separate from the rest of the system. Unless i'm mistaken, the block in question

Re: [fossil-users] Fossil wiki parsing code

2014-12-01 Thread Stephan Beal
On Mon, Dec 1, 2014 at 8:11 PM, James Turner ja...@calminferno.net wrote: Yup, was just browsing wikiformat.c. I'll share what I come up with. I also plan on creating a lua wrapper for it as my app is written in lua. fwiw (oh, come on, most of you knew this was coming ;)... Depending on the

Re: [fossil-users] Fossil wiki parsing code

2014-12-01 Thread James Turner
On Mon, Dec 01, 2014 at 08:22:49PM +0100, Stephan Beal wrote: On Mon, Dec 1, 2014 at 8:11 PM, James Turner ja...@calminferno.net wrote: Yup, was just browsing wikiformat.c. I'll share what I come up with. I also plan on creating a lua wrapper for it as my app is written in lua. fwiw

Re: [fossil-users] Fossil wiki parsing code

2014-12-01 Thread James Turner
On Mon, Dec 01, 2014 at 08:18:06PM +0100, Stephan Beal wrote: On Mon, Dec 1, 2014 at 8:00 PM, Richard Hipp d...@sqlite.org wrote: Never been separated out, as far as I know. But you'll find all the code in the single file named wikiformat.c. It shouldn't be that hard to separate from