Merge pull request #374 from arr2036/optional_livepreview
Optional livepreview
This commit is contained in:
@@ -57,6 +57,10 @@ opts = OptionParser.new do |opts|
|
|||||||
wiki_options[:ref] = ref
|
wiki_options[:ref] = ref
|
||||||
end
|
end
|
||||||
|
|
||||||
|
opts.on("--no-live-preview", "Disables livepreview.") do
|
||||||
|
wiki_options[:live_preview] = false
|
||||||
|
end
|
||||||
|
|
||||||
opts.on("--no-mathjax", "Disables mathjax.") do
|
opts.on("--no-mathjax", "Disables mathjax.") do
|
||||||
options['mathjax'] = false
|
options['mathjax'] = false
|
||||||
end
|
end
|
||||||
|
|||||||
@@ -76,7 +76,7 @@ module Precious
|
|||||||
@name = params[:splat].first
|
@name = params[:splat].first
|
||||||
wiki = Gollum::Wiki.new(settings.gollum_path, settings.wiki_options)
|
wiki = Gollum::Wiki.new(settings.gollum_path, settings.wiki_options)
|
||||||
if page = wiki.page(@name)
|
if page = wiki.page(@name)
|
||||||
if page.format.to_s.include?('markdown') && supported_useragent?(request.user_agent)
|
if settings.wiki_options[:live_preview] && page.format.to_s.include?('markdown') && supported_useragent?(request.user_agent)
|
||||||
redirect '/livepreview/index.html?page=' + encodeURIComponent(@name)
|
redirect '/livepreview/index.html?page=' + encodeURIComponent(@name)
|
||||||
else
|
else
|
||||||
@page = page
|
@page = page
|
||||||
|
|||||||
@@ -139,6 +139,7 @@ module Gollum
|
|||||||
# site.
|
# site.
|
||||||
# options - Optional Hash:
|
# options - Optional Hash:
|
||||||
# :universal_toc - Table of contents on all pages. Default: false
|
# :universal_toc - Table of contents on all pages. Default: false
|
||||||
|
# :live_preview - Livepreview editing for markdown files. Default: true
|
||||||
# :base_path - String base path for all Wiki links.
|
# :base_path - String base path for all Wiki links.
|
||||||
# Default: "/"
|
# Default: "/"
|
||||||
# :page_class - The page Class. Default: Gollum::Page
|
# :page_class - The page Class. Default: Gollum::Page
|
||||||
@@ -173,6 +174,7 @@ module Gollum
|
|||||||
self.class.default_ws_subs
|
self.class.default_ws_subs
|
||||||
@history_sanitization = options[:history_sanitization] ||
|
@history_sanitization = options[:history_sanitization] ||
|
||||||
self.class.history_sanitization
|
self.class.history_sanitization
|
||||||
|
@live_preview = options.fetch(:live_preview, true)
|
||||||
@universal_toc = options.fetch(:universal_toc, false)
|
@universal_toc = options.fetch(:universal_toc, false)
|
||||||
@mathjax = options[:mathjax] || true
|
@mathjax = options[:mathjax] || true
|
||||||
end
|
end
|
||||||
|
|||||||
Reference in New Issue
Block a user