I don't think I am doing anything different... Do we need to code the web addresses to be hyperlinks?
yeah, i haven't added in a parser yet, so if you want to make a link, use HTML <a href="http://whatever">click here linky link</a>
no need for a parser. rails has a method "linkify" so like: <%= linkify comment.text %> instead of <%= comment.text %>
hmmm... looks like it should be there...
Contrast this to the way Ruby on Rails handles templating logic. In essence, it /does/ have a templating language - it just so happens that this language is Ruby as well. What's really smart is that Rails makes use of Ruby's syntactic flexibility to create a domain specific language (or mini language) adapted to the needs of templates. Built in functions are provided like h() (for HTML escaping) and linkify() (for auto-marking-up links). Because Ruby lets you omit parentheses, you end up with template code looking like this:
http://radar.oreilly.com/archives/2005/06/ruby_on_rails_a.html