Properly escape &
in injected live-reload script tag (#825)
"[…] `&` normally indicates the start of a character entity reference or numeric character reference; writing it as `&` […] allows `&` to be included in the content of an element or in the value of an attribute." From: https://en.wikipedia.org/wiki/HTML#Character_and_entity_references
This commit is contained in:
parent
b3bc8a8896
commit
587d7396b3
|
@ -633,7 +633,7 @@ impl Site {
|
||||||
return html.replace(
|
return html.replace(
|
||||||
"</body>",
|
"</body>",
|
||||||
&format!(
|
&format!(
|
||||||
r#"<script src="/livereload.js?port={}&mindelay=10"></script></body>"#,
|
r#"<script src="/livereload.js?port={}&mindelay=10"></script></body>"#,
|
||||||
port
|
port
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
|
|
|
@ -161,7 +161,7 @@ fn can_build_site_without_live_reload() {
|
||||||
assert!(file_exists!(public, "nested_sass/scss.css"));
|
assert!(file_exists!(public, "nested_sass/scss.css"));
|
||||||
|
|
||||||
// no live reload code
|
// no live reload code
|
||||||
assert_eq!(file_contains!(public, "index.html", "/livereload.js?port=1112&mindelay=10"), false);
|
assert_eq!(file_contains!(public, "index.html", "/livereload.js?port=1112&mindelay=10"), false);
|
||||||
|
|
||||||
// Both pages and sections are in the sitemap
|
// Both pages and sections are in the sitemap
|
||||||
assert!(file_contains!(
|
assert!(file_contains!(
|
||||||
|
|
Loading…
Reference in a new issue