zeus.ugent.be/lib/filters/typogruby_custom.rb

7 lines
214 B
Ruby
Raw Normal View History

2021-03-21 09:26:24 +00:00
require 'typogruby'
Nanoc::Filter.define(:typogruby_custom) do |content, _params|
filters = [:amp, :widont, :smartypants, :initial_quotes]
filters.reduce(content) {|text, filt| Typogruby.send(filt, text)}
end