1. switched the following languages to use a magic heredoc token instead of a comment<br>2. there was one way to trigger ruby scope, by have a heredoc token of *_EVAL<br>     now, there are two options:<br>       a. foobar = <<-RUBY<br>
       b. eval <<-FOOBAR # works with eval, module_eval and class_eval<br><br>TODO:<br> * support <<-'HEREDOC' or <<-"HEREDOC" syntax for magic tokens for embedded languages<br> * support <<HEREDOC magic tokens for embedded languages<br>
<br>patch is attached, and can be found here: <a href="http://pastie.org/394164">http://pastie.org/394164</a><br><br>