module Roda::RodaPlugins::ContentFor

def self.configure(app, opts = {})

the :append option to append.
is called multiple times to set data. Overwrite is default, use
Configure whether to append or overwrite if content_for
def self.configure(app, opts = {})
  app.opts[:append_content_for] = opts.fetch(:append, false)
end