Sha256: 9175f886d69cc7d9d7c4b95e1d0af3d431853eb0d4dde25e1d9cfe7686cdcdeb
Contents?: true
Size: 764 Bytes
Versions: 33
Compression:
Stored size: 764 Bytes
Contents
# Example gollum config # gollum ../wiki --config config.rb # # or run from source with # # bundle exec bin/gollum ../wiki/ --config config.rb # Remove const to avoid # warning: already initialized constant FORMAT_NAMES # # only remove if it's defined. # constant Gollum::Page::FORMAT_NAMES not defined (NameError) Gollum::Page.send :remove_const, :FORMAT_NAMES if defined? Gollum::Page::FORMAT_NAMES # limit to one format Gollum::Page::FORMAT_NAMES = { :markdown => "Markdown" } =begin Valid formats are: { :markdown => "Markdown", :textile => "Textile", :rdoc => "RDoc", :org => "Org-mode", :creole => "Creole", :rest => "reStructuredText", :asciidoc => "AsciiDoc", :mediawiki => "MediaWiki", :pod => "Pod" } =end
Version data entries
33 entries across 33 versions & 2 rubygems