manic

Manic is a static site generator, with configuration in ruby. bin/manic looks for config.manic in the current working directory.. parsing site into output

usage

Manic.config do 
  # set global variables
  site_title  "Ink site yo"
  author  "Justin Baker"

  # extend with helper method
  plugin TagHelper
  plugin "filename"

  # add helper method for use in templates
  img_tag lambda{|src| "<img src=\"#{src}\" />"}
end