Fix asterisks on opening times
This commit is contained in:
parent
f93e85c4f9
commit
26650299ee
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@
|
||||||
_site
|
_site
|
||||||
node_modules
|
node_modules
|
||||||
result
|
result
|
||||||
|
package.json
|
||||||
|
|
|
@ -46,7 +46,7 @@ async function updateOpeningTimes() {
|
||||||
.text()
|
.text()
|
||||||
.trim();
|
.trim();
|
||||||
if (date && time) {
|
if (date && time) {
|
||||||
times.push(`*${date}:* ${time}`);
|
times.push(`${date}: ${time}`);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
|
@ -64,7 +64,7 @@ async function updateOpeningTimes() {
|
||||||
if (line) {
|
if (line) {
|
||||||
const parts = line.split(":");
|
const parts = line.split(":");
|
||||||
if (parts.length > 1) {
|
if (parts.length > 1) {
|
||||||
times.push(`*${parts[0].trim()}:* ${parts.slice(1).join(":").trim()}`);
|
times.push(`${parts[0].trim()}: ${parts.slice(1).join(":").trim()}`);
|
||||||
} else {
|
} else {
|
||||||
times.push(line);
|
times.push(line);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue