This bug is caused by text in the text editing area being unintentionally formatted in bold.
Please fix the following section in “frontend/index.html”.
【Before】
/* Syntax highlight colors using theme variables */
.syntax-overlay .md-heading { color: var(--accent-primary); font-weight: 600; }
.syntax-overlay .md-bold { color: var(--text-primary); font-weight: 700; }
/* ... ... */
【After】(delete font-weight )
/* Syntax highlight colors using theme variables */
.syntax-overlay .md-heading { color: var(--accent-primary); }
.syntax-overlay .md-bold { color: var(--text-primary); }
/* ... ... */

This bug is caused by text in the text editing area being unintentionally formatted in bold.
Please fix the following section in “frontend/index.html”.
【Before】
【After】(delete
font-weight)