Skip to content

This Markdown editor has a bug that causes the cursor position to shift on Mac OS. #212

@Sinichi-alt

Description

@Sinichi-alt

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); }
        /* ... ... */
Image

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions