Skip to content

Commit 589f299

Browse files
committed
Merge pull request #356 from repotag/escape_rest2html_filepath
Properly escape the filepath to rest2html
2 parents c1d67e6 + 1e7d83f commit 589f299

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/github/markups.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
require "github/markup/markdown"
2+
require "shellwords"
23

34
markups << GitHub::Markup::Markdown.new
45

@@ -29,7 +30,7 @@
2930
Asciidoctor.render(content, :safe => :secure, :attributes => %w(showtitle idprefix idseparator=- env=github env-github source-highlighter=html-pipeline))
3031
end
3132

32-
command("python2 -S #{File.dirname(__FILE__)}/commands/rest2html", /re?st(\.txt)?/)
33+
command("python2 -S #{Shellwords.escape(File.dirname(__FILE__))}/commands/rest2html", /re?st(\.txt)?/)
3334

3435
# pod2html is nice enough to generate a full-on HTML document for us,
3536
# so we return the favor by ripping out the good parts.

0 commit comments

Comments
 (0)