# Helper functions for site-building. include Nanoc3::Helpers::Rendering class Nanoc3::Item def add_content content @raw_content += "\n\n#{content}" end def add_references refs add_content refs end def name identifier.split("/").last end def draft? self[:techne] == :wip end def cognitive? !self[:non_cognitive] end def article? not self[:is_category] and not draft? and cognitive? end def is_category? category !!path.match(%r{^/#{category}/}) end end class Nanoc3::Site # only articles that actually get printed attr_reader :printed_items def find_printed_items @printed_items = @items.select { |i| not i[:is_hidden] and not i.binary? } end end def category name render "category", :category => name end def route_unchanged item.identifier.chop + '.' + item[:extension] end def google_search <
EOF end