Sha256: 435c77e489a76e322320104fd35088d2de367f0dde884f660ed16039526e18bd

Contents?: true

Size: 1.34 KB

Versions: 13

Compression:

Stored size: 1.34 KB

Contents

module Locomotive
  module Steam
    module Liquid
      module Filters
        module Text

          def underscore(input)
            input.to_s.gsub(' ', '_').gsub('/', '_').underscore
          end

          def dasherize(input)
            input.to_s.gsub(' ', '-').gsub('/', '-').dasherize
          end

          def encode(input)
            Rack::Utils.escape(input)
          end

          def parameterize(input)
            input.parameterize
          end

          # alias newline_to_br
          def multi_line(input)
            input.to_s.gsub("\n", '<br/>')
          end

          def concat(input, *args)
            result = input.to_s
            args.flatten.each { |a| result << a.to_s }
            result
          end

          # right justify and padd a string
          def rjust(input, integer, padstr = '')
            input.to_s.rjust(integer, padstr)
          end

          # left justify and padd a string
          def ljust(input, integer, padstr = '')
            input.to_s.ljust(integer, padstr)
          end

          def textile(input)
            @context.registers[:services].textile.to_html(input)
          end

          def markdown(input)
            @context.registers[:services].markdown.to_html(input)
          end

        end

        ::Liquid::Template.register_filter(Text)

      end
    end
  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
locomotivecms_steam-1.8.0.alpha2 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.8.0.alpha1 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.7.1 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.7.0 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.6.1 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.6.0 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.6.0.rc1 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.6.0.beta1 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.5.3 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.5.2 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.5.1 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.5.0 lib/locomotive/steam/liquid/filters/text.rb
locomotivecms_steam-1.5.0.rc1 lib/locomotive/steam/liquid/filters/text.rb