module Erubis::NoCodeEnhancer
remove code and leave text, especially useful when validating HTML tags.
ex.
$ erubis -s -E NoCode file.eruby | tidy -errors
this is language independent.
Public Instance Methods
Source
# File lib/erubis/enhancer.rb, line 317 def add_expr(src, code, indicator) src << "\n" * code.count("\n") end
Source
# File lib/erubis/enhancer.rb, line 321 def add_stmt(src, code) src << "\n" * code.count("\n") end
Source
# File lib/erubis/enhancer.rb, line 313 def add_text(src, text) src << text end