mirror of
https://github.com/caddyserver/caddy.git
synced 2025-01-23 18:55:49 +03:00
Missed fixing setup.
This commit is contained in:
parent
ecf91f525f
commit
5a0d373fcd
1 changed files with 3 additions and 3 deletions
|
@ -59,8 +59,8 @@ func TestMarkdownParse(t *testing.T) {
|
||||||
}`, false, []markdown.Config{{
|
}`, false, []markdown.Config{{
|
||||||
PathScope: "/blog",
|
PathScope: "/blog",
|
||||||
Extensions: map[string]struct{}{
|
Extensions: map[string]struct{}{
|
||||||
".md": struct{}{},
|
".md": {},
|
||||||
".txt": struct{}{},
|
".txt": {},
|
||||||
},
|
},
|
||||||
Styles: []string{"/resources/css/blog.css"},
|
Styles: []string{"/resources/css/blog.css"},
|
||||||
Scripts: []string{"/resources/js/blog.js"},
|
Scripts: []string{"/resources/js/blog.js"},
|
||||||
|
@ -72,7 +72,7 @@ func TestMarkdownParse(t *testing.T) {
|
||||||
}`, false, []markdown.Config{{
|
}`, false, []markdown.Config{{
|
||||||
PathScope: "/blog",
|
PathScope: "/blog",
|
||||||
Extensions: map[string]struct{}{
|
Extensions: map[string]struct{}{
|
||||||
".md": struct{}{},
|
".md": {},
|
||||||
},
|
},
|
||||||
Template: markdown.GetDefaultTemplate(),
|
Template: markdown.GetDefaultTemplate(),
|
||||||
}}},
|
}}},
|
||||||
|
|
Loading…
Reference in a new issue