Removed warning about pygmentize not being installed.
This commit is contained in:
parent
fb4b5404ae
commit
68b1529714
@ -50,6 +50,13 @@ require 'mustache'
|
|||||||
# We use `Net::HTTP` to highlight code via <http://pygments.appspot.com>
|
# We use `Net::HTTP` to highlight code via <http://pygments.appspot.com>
|
||||||
require 'net/http'
|
require 'net/http'
|
||||||
|
|
||||||
|
# Code is run through [Pygments](http://pygments.org/) for syntax
|
||||||
|
# highlighting. If it's not installed, locally, use a webservice.
|
||||||
|
# It may be a good idea to warn the user.
|
||||||
|
# if `which pygmentize` == ""
|
||||||
|
# puts "Warning: Pygments not found. Using pygments.appspot.com for highlighting"
|
||||||
|
# end
|
||||||
|
|
||||||
#### Public Interface
|
#### Public Interface
|
||||||
|
|
||||||
# `Rocco.new` takes a source `filename`, an optional list of source filenames
|
# `Rocco.new` takes a source `filename`, an optional list of source filenames
|
||||||
@ -162,7 +169,6 @@ class Rocco
|
|||||||
|
|
||||||
code_html =
|
code_html =
|
||||||
if `which pygmentize` == ""
|
if `which pygmentize` == ""
|
||||||
puts "Warning: pygmentize not installed. Using pygmentize.appspot.com"
|
|
||||||
highlight_webservice(code_stream)
|
highlight_webservice(code_stream)
|
||||||
elsif
|
elsif
|
||||||
highlight_pygmentize(code_stream)
|
highlight_pygmentize(code_stream)
|
||||||
|
Loading…
Reference in New Issue
Block a user