From gwking at metabang.com Sun Mar 4 14:17:52 2007 From: gwking at metabang.com (Gary King) Date: Sun, 4 Mar 2007 09:17:52 -0500 Subject: [cl-markdown-devel] Announcing: CL-Markdown 0.8.7 Message-ID: Thanks to more helpful bug reports from Hans Halvorson and others [CL- Markdown][] is now at 0.8.7. The changes modify block structure detection in the parser to be more in line with the actual Markdown syntax, implement the two #\Spaces at the end of a line means `
`, and new HTML rendering to get the output closer to fine. CL-Markdown deviates from Markdown in that it continues to parse Markdown syntax even within block tags. I view this as a bug, not a feature. See [Pandoc][] and [maruku][] for additional riffs on this theme. [maruku]: http://rubyforge.org/projects/maruku/ [Pandoc]: http://sophos.berkeley.edu/macfarlane/pandoc/README.html [CL-Markdown]: http://common-lisp.net/project/cl-markdown/ -- Gary Warren King, metabang.com Cell: (413) 885 9127 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From hhalvors at Princeton.EDU Tue Mar 6 20:18:27 2007 From: hhalvors at Princeton.EDU (Hans Halvorson) Date: Tue, 06 Mar 2007 15:18:27 -0500 Subject: [cl-markdown-devel] hard returns problem returns Message-ID: <87wt1udt2k.wl%hhalvors@Princeton.EDU> Some problems with formatting bullet lists with hard returns have reemerged in version 0.8.7. Here is a sample: (markdown "* A list element with a hard return. * A second list element with a hard return, for which we add some superfluous material" :stream t) ==> hard return.

some superfluous material

Best wishes, Hans From gwking at metabang.com Wed Mar 7 03:24:03 2007 From: gwking at metabang.com (Gary King) Date: Tue, 6 Mar 2007 22:24:03 -0500 Subject: [cl-markdown-devel] hard returns problem returns In-Reply-To: <87wt1udt2k.wl%hhalvors@Princeton.EDU> References: <87wt1udt2k.wl%hhalvors@Princeton.EDU> Message-ID: <2003448A-03BB-4201-AB93-E722E6F16294@metabang.com> Thanks Hans, I've verified the same _bad_ behavior that you have; I'll check on this tomorrow. (two steps forward, one step backwards...) On Mar 6, 2007, at 3:18 PM, Hans Halvorson wrote: > Some problems with formatting bullet lists with hard returns have > reemerged in version 0.8.7. Here is a sample: > > (markdown "* A list element with a > hard return. > * A second list element with a hard return, for which we add > some superfluous material" :stream t) > > ==> > > hard return. >

some superfluous material >

> > > Best wishes, > Hans > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 885 9127 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Mon Mar 12 02:29:51 2007 From: gwking at metabang.com (Gary King) Date: Sun, 11 Mar 2007 22:29:51 -0400 Subject: [cl-markdown-devel] hard returns problem returns In-Reply-To: <87wt1udt2k.wl%hhalvors@Princeton.EDU> References: <87wt1udt2k.wl%hhalvors@Princeton.EDU> Message-ID: Hi Hans, 0.8.8 just went out with the re-fixed fix. Unfortunately, I'll need to go to work on 0.8.9 very soon because this fix plays badly with other fixes and produces funky line breaks on input like "AT&T. Thanks again for your report. The regression tests were failing, I just need to make sure and read them more carefully. On Mar 6, 2007, at 3:18 PM, Hans Halvorson wrote: > Some problems with formatting bullet lists with hard returns have > reemerged in version 0.8.7. Here is a sample: > > (markdown "* A list element with a > hard return. > * A second list element with a hard return, for which we add > some superfluous material" :stream t) > > ==> > > hard return. >

some superfluous material >

> > > Best wishes, > Hans > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 885 9127 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From luke at balooga.com Thu Mar 22 20:35:35 2007 From: luke at balooga.com (Luke J Crook) Date: Thu, 22 Mar 2007 16:35:35 -0400 Subject: [cl-markdown-devel] HTML generation questions using cl-markdown (fwd) Message-ID: <20070322203535.67749.qmail@mail.superb.net> I sent this to the announce list by mistake. - Luke ---------- Forwarded message ---------- From: Luke J Crook To: cl-markdown-announce at common-lisp.net Subject: HTML generation questions using cl-markdown Date: Thu, 22 Mar 2007 15:20:47 -0400 I'm unsure if these two issues are a limitation in the Markdown syntax or a bug in CL-MARKDOWN. 1) I'm getting an error when I have the following in CL-MARDOWN: [*DEFAULT-SURFACE*](#*default-surface*) No applicable methods for # with args (CL-MARKDOWN::EMPHASIS NIL) 2) CL-MARKDOWN doesn't seem to render quotes in code (indented 4 spaces). For example: \(DRAW-STRING-SHADED-* \"Hello World!\" 0 0 F-COLOR B-COLOR :SURFACE A-SURFACE\)" Will give the following: (DRAW-STRING-SHADED-* "Hello World!" 0 0 F-COLOR B-COLOR :SURFACE A-SURFACE) Thanks, - Luke From gwking at metabang.com Fri Mar 23 15:16:43 2007 From: gwking at metabang.com (Gary King) Date: Fri, 23 Mar 2007 11:16:43 -0400 Subject: [cl-markdown-devel] HTML generation questions using cl-markdown (fwd) In-Reply-To: <20070322203535.67749.qmail@mail.superb.net> References: <20070322203535.67749.qmail@mail.superb.net> Message-ID: Hi Luke, I will try to get to these issues over the weekend; On Mar 22, 2007, at 4:35 PM, Luke J Crook wrote: > > I sent this to the announce list by mistake. > - Luke > ---------- Forwarded message ---------- > From: Luke J Crook > To: cl-markdown-announce at common-lisp.net > Subject: HTML generation questions using cl-markdown > Date: Thu, 22 Mar 2007 15:20:47 -0400 > I'm unsure if these two issues are a limitation in the Markdown > syntax or a bug in CL-MARKDOWN. > 1) I'm getting an error when I have the following in CL-MARDOWN: > [*DEFAULT-SURFACE*](#*default-surface*) > No applicable methods for # MARKDOWN::RENDER-TO-HTML 221D7552> with args (CL-MARKDOWN::EMPHASIS > > NIL) > > 2) CL-MARKDOWN doesn't seem to render quotes in code (indented 4 > spaces). For example: > \(DRAW-STRING-SHADED-* \"Hello World!\" 0 0 F-COLOR B- > COLOR :SURFACE A-SURFACE\)" > Will give the following: > (DRAW-STRING-SHADED-* "Hello World!" 0 0 F-COLOR B- > COLOR :SURFACE A-SURFACE) > Thanks, > - Luke > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 885 9127 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM From gwking at metabang.com Fri Mar 30 21:26:45 2007 From: gwking at metabang.com (Gary King) Date: Fri, 30 Mar 2007 17:26:45 -0400 Subject: [cl-markdown-devel] HTML generation questions using cl-markdown (fwd) In-Reply-To: <20070322203535.67749.qmail@mail.superb.net> References: <20070322203535.67749.qmail@mail.superb.net> Message-ID: Hi Luke, Sorry to be so slow on this; I've been completely swamped with a different project and will continue to be so for at least the next week. On Mar 22, 2007, at 4:35 PM, Luke J Crook wrote: > > I sent this to the announce list by mistake. > - Luke > ---------- Forwarded message ---------- > From: Luke J Crook > To: cl-markdown-announce at common-lisp.net > Subject: HTML generation questions using cl-markdown > Date: Thu, 22 Mar 2007 15:20:47 -0400 > I'm unsure if these two issues are a limitation in the Markdown > syntax or a bug in CL-MARKDOWN. > 1) I'm getting an error when I have the following in CL-MARDOWN: > [*DEFAULT-SURFACE*](#*default-surface*) > No applicable methods for # MARKDOWN::RENDER-TO-HTML 221D7552> with args (CL-MARKDOWN::EMPHASIS > > NIL) > > 2) CL-MARKDOWN doesn't seem to render quotes in code (indented 4 > spaces). For example: > \(DRAW-STRING-SHADED-* \"Hello World!\" 0 0 F-COLOR B- > COLOR :SURFACE A-SURFACE\)" > Will give the following: > (DRAW-STRING-SHADED-* "Hello World!" 0 0 F-COLOR B- > COLOR :SURFACE A-SURFACE) > Thanks, > - Luke > _______________________________________________ > cl-markdown-devel mailing list > cl-markdown-devel at common-lisp.net > http://common-lisp.net/cgi-bin/mailman/listinfo/cl-markdown-devel -- Gary Warren King, metabang.com Cell: (413) 885 9127 Fax: (206) 338-4052 gwkkwg on Skype * garethsan on AIM