We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c1d67e6 + 1e7d83f commit 589f299Copy full SHA for 589f299
lib/github/markups.rb
@@ -1,4 +1,5 @@
1
require "github/markup/markdown"
2
+require "shellwords"
3
4
markups << GitHub::Markup::Markdown.new
5
@@ -29,7 +30,7 @@
29
30
Asciidoctor.render(content, :safe => :secure, :attributes => %w(showtitle idprefix idseparator=- env=github env-github source-highlighter=html-pipeline))
31
end
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)?/)
34
35
# pod2html is nice enough to generate a full-on HTML document for us,
36
# so we return the favor by ripping out the good parts.
0 commit comments