Merge "Fix missing space after hyperlinked topics"

This commit is contained in:
Zuul 2019-05-10 09:43:42 +00:00 committed by Gerrit Code Review
commit 0169e3a092
1 changed files with 3 additions and 2 deletions

View File

@ -15,8 +15,9 @@ Handlebars.registerHelper('trackContentLine', function(options) {
sentence += '<a href="' + words[i] + '">'
+ words[i] + '</a>';
} else {
sentence += words[i] + " ";
sentence += words[i];
}
sentence += ' ';
}
return new Handlebars.SafeString(sentence);
});