We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 230f1e3 commit 6af19d5Copy full SHA for 6af19d5
lib/pact/doc/markdown/index_renderer.rb
@@ -1,3 +1,5 @@
1
+require 'erb'
2
+
3
module Pact
4
module Doc
5
module Markdown
@@ -32,7 +34,7 @@ def title
32
34
end
33
35
36
def item title, file_name
- "* [#{title}](#{file_name})"
37
+ "* [#{title}](#{ERB::Util.url_encode(file_name)})"
38
39
40
spec/support/generated_index.md
@@ -1,4 +1,4 @@
### Pacts for Some Consumer
-* [Some Provider](Some Provider.md)
-* [Some other provider](Some other provider.md)
+* [Some Provider](Some%20Provider.md)
+* [Some other provider](Some%20other%20provider.md)
0 commit comments