class Nanoc::Filters::Slim
@api private
Public Instance Methods
run(content, params = {})
click to toggle source
Runs the content through [Slim](slim-lang.com/). This method takes no options.
@param [String] content The content to filter
@return [String] The filtered content
# File lib/nanoc/filters/slim.rb, line 16 def run(content, params = {}) params = { disable_capture: true, # Capture managed by Nanoc buffer: '_erbout', # Force slim to output to the buffer used by Nanoc }.merge params # Create context context = ::Nanoc::Core::Context.new(assigns) ::Slim::Template.new(filename, params) { content }.render(context) { assigns[:content] } end