I am investigating something similar for zena using RubyLess (direct
parsing of ruby from db is *dangerous* to say the least):
http://tinyurl.com/mhw5ag.
While investigating on new ways to parse, extracting things such as
"<%= ... %>" or "{{... }}" is definitely an option.
For the moment, I just double parse the text and only extract "[label]
... [/label]" in a two step process:
1. remove [label]...[/label] from text and replace with a placeholder
"===38475==="
2. parse with redcloth
3. replace placeholders by actual content
Gaspard
On Thu, Jun 25, 2009 at 4:18 PM, stuefer
manuel<manuel at ethicalsoftware.it> wrote:> Hi, does someone of you ever tried to put some helper methods in
> database with some other text like this:
>
> ? ? ? ?h1. title
> ? ? ? ?<%= helper(id) %>
> ? ? ? ?description
>
> and get an output using RedCloth?! what I need is that the helper
> function would be elaborated .. not only displayed as html
>
> mS
>
>
>
> _______________________________________________
> Redcloth-upwards mailing list
> Redcloth-upwards at rubyforge.org
> http://rubyforge.org/mailman/listinfo/redcloth-upwards
>