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
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:
- remove [label]…[/label] from text and replace with a placeholder
“===38475===”
- parse with redcloth
- replace placeholders by actual content
Gaspard
On Thu, Jun 25, 2009 at 4:18 PM, stuefer