Mathpix / mathpix-markdown-it

Markdown rendering + Latex extras (equations, tables, ...), with conversion features, for the scientific community
MIT License
465 stars 42 forks source link

PR into master from dev/olga/9295-Incorrect-rendering-for-textit-v1 #323

Closed OlgaRedozubova closed 2 months ago

OlgaRedozubova commented 2 months ago

branch: dev/olga/9295-Incorrect-rendering-for-textit-v1

Fixed issues:

1. Incorrect rendering for [\textit{}

Using [ before some inline rules caused duplicate rendering. Fix: All inline rules should use silent to prevent this rule from being applied if the rule is called for validation

Before:

Screenshot 2024-04-23 at 12 37 34

After:

Screenshot 2024-04-23 at 12 37 54

2. Copy dialog won't go away

Added escapeHtml for clipboardCopyElement

Before:

Screenshot 2024-04-23 at 12 43 41

After:

Screenshot 2024-04-23 at 12 43 55

3. Brace matching error in caption

Changed the closing bracket search rule for \caption{...}

Before:

Screenshot 2024-04-23 at 12 45 56

After:

Screenshot 2024-04-23 at 12 47 29