Re: [racket-users] convert to/from Sribble

2015-04-22 Thread WarGrey Gyoudmon Ju
I use Scribble heavily every day. One question with the default Markdown renderer is it breaks line every 72 chars when rendering blocks, and this poor implementation totally messes up the resulting file. On Wed, Apr 22, 2015 at 11:13 PM, Neil Van Dyke wrote: > Here's an interface for using you

Re: [racket-users] convert to/from Sribble

2015-04-22 Thread Gour
Neil Van Dyke writes: > I think one would also want to look at the code for an existing > renderer, not just work from the interface documentation alone. (If I > were going to do a more-plain-HTML5 renderer, my first pass would be to > copy the existing HTML renderer, and start modifying it

Re: [racket-users] convert to/from Sribble

2015-04-22 Thread Gour
Matthias Felleisen writes: > No need for that. You can write your own renderer :-) What do you think about https://github.com/mbutterick/quad ? Sincerely, Gour -- A person is considered still further advanced when he regards honest well-wishers, affectionate benefactors, the neutral, medi

Re: [racket-users] convert to/from Sribble

2015-04-22 Thread Neil Van Dyke
Here's an interface for using your own renderers with Scribble: http://docs.racket-lang.org/scribble/renderer.html I think one would also want to look at the code for an existing renderer, not just work from the interface documentation alone. (If I were going to do a more-plain-HTML5 renderer,

Re: [racket-users] convert to/from Sribble

2015-04-22 Thread Matthias Felleisen
No need for that. You can write your own renderer :-) On Apr 22, 2015, at 1:02 AM, Gour wrote: > > Matthias Felleisen writes: > >> We'd love to have an additional renderer for Scribble. > > Good. > > Btw, is there something like Scribble-2 planned? > > > Sincerely, > Gour > > -- > A

Re: [racket-users] convert to/from Sribble

2015-04-21 Thread Gour
Matthias Felleisen writes: > We'd love to have an additional renderer for Scribble. Good. Btw, is there something like Scribble-2 planned? Sincerely, Gour -- A person is considered still further advanced when he regards honest well-wishers, affectionate benefactors, the neutral, mediator

Re: [racket-users] convert to/from Sribble

2015-04-21 Thread Matthias Felleisen
We'd love to have an additional renderer for Scribble. On Apr 21, 2015, at 7:05 AM, Neil Van Dyke wrote: > Gour wrote on 04/21/2015 06:50 AM: >> >>> Another way to get to lots of different formats from Scribble would be >>> to make Scribble generate more-plain HTML5 (i.e., less tag-heavy t

Re: [racket-users] convert to/from Sribble

2015-04-21 Thread Neil Van Dyke
Gour wrote on 04/21/2015 06:50 AM: Another way to get to lots of different formats from Scribble would be to make Scribble generate more-plain HTML5 (i.e., less tag-heavy than in its normal HTML output, throwing away a lot of the info), and then use that as a source format for other converters.

Re: [racket-users] convert to/from Sribble

2015-04-21 Thread Gour
Neil Van Dyke writes: Hello Neil, let me thank you for scribble-mode first!! > (I'm addressing the Scribble part of the question. I'm not familiar > with Pollen.) OK. Fair-enough. > I understand the question about vendor lock-in. That's neither the > intent nor the effect, and people her

Re: [racket-users] convert to/from Sribble

2015-04-21 Thread Neil Van Dyke
(I'm addressing the Scribble part of the question. I'm not familiar with Pollen.) I understand the question about vendor lock-in. That's neither the intent nor the effect, and people here will happily help you go to other formats. You can already generate HTML, LaTeX (PDF), and Markdown fr

[racket-users] convert to/from Sribble

2015-04-21 Thread Gour
Hello, after becoming interested to learn Racket to be used as general-purpose language, I'm considering to use Scribble/Polen for my writing/web projects. However, I'm a bit concerned not finding any converted which could be used to conver markup from/to Scribble which means that using it provid