Module: Octopress::LinkBlog::Configuration

Defined in:
lib/octopress-linkblog/configuration.rb

Constant Summary collapse

DEFAULTS =
{
  'linkpost' => {
    'marker' => "",
    'marker_position' => 'after'
  },

  'post' => {
    'marker' => false,
    'marker_position' => 'before'
  },

  'titlecase' => true,
  'unorphan'  => true,
  'permalink_label' => 'Permalink'
}

Class Method Summary collapse

Class Method Details

.configObject



32
33
34
# File 'lib/octopress-linkblog/configuration.rb', line 32

def self.config
  @config ||= Jekyll::Utils.deep_merge_hashes(DEFAULTS, Octopress.config)
end