Skip to content

Commit

Permalink
Removed extra spaces #1
Browse files Browse the repository at this point in the history
  • Loading branch information
GOLDSCIMIDT committed Oct 16, 2018
1 parent 07ec09e commit 880dffc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion classes/markdown.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ window.markdown = {
return str
},
applyNewLines(str) {
return str.trim().replace(/(\n\r?)|(\<br\/?\>)/g, '&nbsp;&nbsp;<br />')
return str.trim().replace(/(\n\r?)|(\<br\/?\>)/g, '<br/>')
},
applyBold(str) {
const boldRX = /[\*_][\*_](.+)[\*_][\*_]/
Expand Down
2 changes: 1 addition & 1 deletion classes/ui.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ const UI = {
type !== 'outline'
? `
<br>
<em>Indicado por&nbsp;
<em>Indicado por
<a
href="${item.author.url}" target="_blank"
style="${style}">@${item.author.login}</a>
Expand Down

0 comments on commit 880dffc

Please sign in to comment.