This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'html_compressor' | |
class HtmlCompressor < Nanoc3::Filter | |
identifier :html_compressor | |
# Runs the content through htmlcompressor. | |
# | |
# This method optionally takes options to pass directly to htmlcompressor | |
# | |
# @param [String] content The content to filter |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# encoding: utf-8 | |
usage 'create_article [options] identifier' | |
summary 'create an article' | |
aliases :ca | |
description <<-EOS | |
Create a new article in the current site. The first data source in the site | |
configuration will be used. | |
EOS |