module Roda::RodaPlugins::ContentFor

def self.configure(app, opts = OPTS)

is called multiple times with the same key.
Configure whether to append or overwrite if content_for
def self.configure(app, opts = OPTS)
  app.opts[:append_content_for] = opts.fetch(:append, true)
end