When using Nanoc, there are standard filter options for compressing CSS and minifying javascript, but there’s no equivalent for HTML. However, we can use Nokogiri to trim our HTML a little by removing some whitespace and getting rid of comments.
To do this, we’re going to build a custom Nanoc filter. Create a
new file in lib/f...