DEBSOURCES
Skip Quicknav
sources / ruby-hamlit / 2.15.1-3 / lib / hamlit / filters / erb.rb
12345678910
# frozen_string_literal: true module Hamlit class Filters class Erb < TiltBase def compile(node) compile_with_tilt(node, 'erb') end end end end