We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dde7945 commit f87c7f8Copy full SHA for f87c7f8
chrome-extension/sidepanel.js
@@ -252,11 +252,9 @@ URL: ${pageContext.url}`;
252
253
// Bold (**bold** or __bold__)
254
text = text.replace(/\*\*(.*?)\*\*/g, '<strong>$1</strong>');
255
- text = text.replace(/__(.*?)__/g, '<strong>$1</strong>');
256
257
// Italic (*italic* or _italic_)
258
text = text.replace(/\*(.*?)\*/g, '<em>$1</em>');
259
- text = text.replace(/_(.*?)_/g, '<em>$1</em>');
260
261
// Convert list items but don't wrap in ul/ol yet
262
text = text.replace(/^[\s]*[-\*\+]\s+(.+)$/gm, '<!--UL_ITEM--><li>$1</li>');
0 commit comments