DEV: Fix coding style.

This commit is contained in:
Dan Ungureanu 2018-11-21 11:59:33 +02:00 committed by Sam
parent d657ce844b
commit 38e29d8c94
1 changed files with 3 additions and 1 deletions

View File

@ -11,6 +11,8 @@ registerUnbound("topic-link", (topic, args) => {
args.class.split(" ").forEach(c => classes.push(c));
}
const result = `<a href='${url}' class='${classes.join(" ")}' data-topic-id='${topic.id}'>${title}</a>`;
const result = `<a href='${url}'
class='${classes.join(" ")}'
data-topic-id='${topic.id}'>${title}</a>`;
return new Handlebars.SafeString(result);
});