Skip to content

Commit 6af19d5

Browse files
committed
fix: URL escape file paths in index of generated markdown
1 parent 230f1e3 commit 6af19d5

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/pact/doc/markdown/index_renderer.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
require 'erb'
2+
13
module Pact
24
module Doc
35
module Markdown
@@ -32,7 +34,7 @@ def title
3234
end
3335

3436
def item title, file_name
35-
"* [#{title}](#{file_name})"
37+
"* [#{title}](#{ERB::Util.url_encode(file_name)})"
3638
end
3739

3840
end

spec/support/generated_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
### Pacts for Some Consumer
22

3-
* [Some Provider](Some Provider.md)
4-
* [Some other provider](Some other provider.md)
3+
* [Some Provider](Some%20Provider.md)
4+
* [Some other provider](Some%20other%20provider.md)

0 commit comments

Comments
 (0)