diff --git a/webapp/utils/markdown.jsx b/webapp/utils/markdown.jsx index 18d5cf128c..809ecc5267 100644 --- a/webapp/utils/markdown.jsx +++ b/webapp/utils/markdown.jsx @@ -130,10 +130,10 @@ class MattermostMarkdownRenderer extends marked.Renderer { if (/^\d+.$/.test(bullet)) { // this is a numbered list item so override the numbering - return `
  • ${text}
  • `; - } else { - return `
  • ${text}
  • `; + return `
  • ${text}
  • `; } + + return `
  • ${text}
  • `; } text(txt) {