Hi Jim, that's what I figured and so in order to have Markdown filter it as raw HTML I will have to create my own snippet as I thought. Per http://daringfireball.net/projects/markdown/syntax#html it seems the only why Markdown will utilize it as 'Inline HTML' is if there's a a line between the inline html and no indentation (thus the snippet won't work in my case). I agree that this was not related to the comment extension so I apologize for "sneaking it in". Thanks for all your help and wonderful extensions Jim ;-)
On Tue, Nov 17, 2009 at 7:38 AM, Jim Gay <[email protected]> wrote: > This is unrelated to the comments extension. > > If you have a snippet which is filtered with Markdown (or Textile or > some other) and it includes one that, for example, has some > non-Markdown text with spaces on a line before some HTML or text > begins, the parsing of the parent snippet (the one with Markdown > formatting) will include the contents and filter it as though it were > filtered with Markdown. > This is a weakness in the way Radiant handles this... or at least its > a weakness in the way Radiant sets the expectation for how the content > will be processed. > > The answer is to either not use any filtering, or change the > comment_form snippet syntax so that it will filter with Markdown. > > Does that make sense? > > On Mon, Nov 16, 2009 at 11:56 PM, Rob Levin <[email protected]> wrote: >> Got it Jim. Thanks. >> >> One other question. If I have a Markdown filtered page and I want to >> insert comment snippets like: <r:snippet name="comment_form"/> using >> the default snippets, it shows up as preformatted text. Is there a >> workaround that I can make it actually show a form within a Markdown >> page or do I have to create my own custom snippets to achieve this? >> >> >> On Mon, Nov 16, 2009 at 8:03 PM, Jim Gay <[email protected]> wrote: >>> You can; that's what you are doing. >>> You have to tell Rails to load the mislav-will_paginate gem and >>> recognize it as will_paginate. >>> >>> On Mon, Nov 16, 2009 at 10:58 PM, Rob Levin <[email protected]> >>> wrote: >>>> Hi Jim, >>>> >>>> That worked - thanks! So I can't depend on the system gem? >>>> >>>> On Mon, Nov 16, 2009 at 7:36 PM, Jim Gay <[email protected]> wrote: >>>>> edit your config/environment.rb to have: >>>>> >>>>> config.gem 'mislav-will_paginate', :lib => 'will_paginate' >>>>> >>>>> I think that should do it. >>>>> >>>>> On Mon, Nov 16, 2009 at 10:11 PM, Alexander Wallace >>>>> <[email protected]> wrote: >>>>>> Saw that a second after I click send, oops. Try installing it as a >>>>>> plugin, >>>>>> or directly installing the will_paginate gem (as opposed to the github >>>>>> version, mine is simply listed as "will_paginate (2.2.2)"... >>>>>> >>>>>> Try out these steps on script/console as well- should let you know if the >>>>>> gem is being loaded in properly. >>>>>> http://wiki.github.com/mislav/will_paginate/troubleshooting >>>>>> >>>>>> On Mon, Nov 16, 2009 at 10:06 PM, Rob Levin >>>>>> <[email protected]>wrote: >>>>>> >>>>>>> I thought this was it: >>>>>>> mislav-will_paginate (2.3.11) >>>>>>> >>>>>>> (as listed in my gem local listing). No? >>>>>>> >>>>>>> >>>>>>> On Mon, Nov 16, 2009 at 7:04 PM, Alexander Wallace >>>>>>> <[email protected]> wrote: >>>>>>> > Looks like you're missing the will_paginate gem. Try gem install >>>>>>> > will_paginate, or grab it from http://github.com/mislav/will_paginate >>>>>>> > >>>>>>> > Alex >>>>>>> > >>>>>>> > On Mon, Nov 16, 2009 at 9:58 PM, Rob Levin <[email protected]> >>>>>>> wrote: >>>>>>> > >>>>>>> >> Wondering what to do to get comments extension to work. When I run >>>>>>> >> the >>>>>>> >> ./script/server -e [production|development] and go to the extensions >>>>>>> >> tab in Admin I see the comments extension and also, a “Comments” tab >>>>>>> >> showed up on the right of Admin. But I still got the following error >>>>>>> >> when I click on it: >>>>>>> >> >>>>>>> >> NoMethodError in Admin/commentsController#index >>>>>>> >> undefined method `paginate' for #<Class:0x238bb8c> >>>>>>> >> >>>>>>> >> Note that before the above I'd done: >>>>>>> >> git clone git://github.com/sjlombardo/radiant-comments.git >>>>>>> >> from the /vendor/extensions dir and renamed: `mv radiant-comments/ >>>>>>> >> comments/` >>>>>>> >> >>>>>>> >> Then I had to hack the source of >>>>>>> >> /vendor/extensions/comments_extension.rb for the include application >>>>>>> >> to: >>>>>>> >> >>>>>>> >> begin >>>>>>> >> require_dependency 'application_controller' >>>>>>> >> rescue MissingSourceFile >>>>>>> >> require_dependency 'application' >>>>>>> >> end >>>>>>> >> >>>>>>> >> And here are my local gems: >>>>> -- >>>>> Jim Gay >>>>> http://www.saturnflyer.com > _______________________________________________ > Radiant mailing list > Post: [email protected] > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant > _______________________________________________ Radiant mailing list Post: [email protected] Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant
