Add leading space to links

This commit is contained in:
2025-09-20 18:51:03 +02:00
parent 8b3c7871ab
commit acd6ed63e1

View File

@@ -350,7 +350,8 @@ class Link extends Symbol {
} }
render() { render() {
return `<a href="${this.link}">${this.text}</a>`; // TODO: This leading space should probably be somewhere else.
return ` <a href="${this.link}">${this.text}</a>`;
} }
} }