@delt/claude-alarm 0.6.14 → 0.6.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli.js CHANGED
@@ -630,6 +630,7 @@ ${label}`);
630
630
  let html = this.escHtml(s);
631
631
  html = html.replace(/```(?:\w*)\n?([\s\S]*?)```/g, "<pre>$1</pre>");
632
632
  html = html.replace(/`([^`]+)`/g, "<code>$1</code>");
633
+ html = html.replace(/^#{1,3}\s+(.+)$/gm, "<b>$1</b>");
633
634
  html = html.replace(/\*\*(.+?)\*\*/g, "<b>$1</b>");
634
635
  html = html.replace(/\*(.+?)\*/g, "<i>$1</i>");
635
636
  return html;