module RbSTFilter class RbST < Nanoc::Filter identifier :rst require 'rbst' def run(content, params = {}) ::RbST.new(content).to_html end end end