Class: Faml::FilterCompilers::Javascript
- Defined in:
- lib/faml/filter_compilers/javascript.rb
Instance Method Summary collapse
Methods inherited from Base
Instance Method Details
#compile(ast) ⇒ Object
7 8 9 10 11 12 |
# File 'lib/faml/filter_compilers/javascript.rb', line 7 def compile(ast) temple = [:multi, [:static, "\n"], [:newline]] compile_texts(temple, ast.lineno, ast.texts, tab_width: 2) temple << [:static, "\n"] [:haml, :tag, 'script', false, [:html, :attrs], [:html, :js, temple]] end |