Sha256: 3bf2de2707882e81fc0b52856d87ce140aec7af829d56290da3d4d59a53092d7
Contents?: true
Size: 490 Bytes
Versions: 90
Compression:
Stored size: 490 Bytes
Contents
# frozen_string_literal: true module Nanoc::Filters # @api private class Typogruby < Nanoc::Filter identifier :typogruby requires 'typogruby' # Runs the content through [Typogruby](http://avdgaag.github.com/typogruby/). # This method takes no options. # # @param [String] content The content to filter # # @return [String] The filtered content def run(content, _params = {}) # Get result ::Typogruby.improve(content) end end end
Version data entries
90 entries across 90 versions & 1 rubygems