Add leading space to links
This commit is contained in:
@@ -350,7 +350,8 @@ class Link extends Symbol {
|
||||
}
|
||||
|
||||
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>`;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user