Sha256: fa8270b19ee1fddb9dfde4758459fee877ad57ecd302c5abd1a11a324c2482ff
Contents?: true
Size: 477 Bytes
Versions: 90
Compression:
Stored size: 477 Bytes
Contents
# frozen_string_literal: true module Nanoc::Filters # @api private class BlueCloth < Nanoc::Filter identifier :bluecloth requires 'bluecloth' # Runs the content through [BlueCloth](http://deveiate.org/projects/BlueCloth). # This method takes no options. # # @param [String] content The content to filter # # @return [String] The filtered content def run(content, _params = {}) ::BlueCloth.new(content).to_html end end end
Version data entries
90 entries across 90 versions & 1 rubygems