vim-markdown icon indicating copy to clipboard operation
vim-markdown copied to clipboard

Fix highlight broken by code fence nested in block quote

Open rhysd opened this issue 1 year ago • 0 comments

Fix #207 Fix #190

This PR adds syntax highlighting for code fences nested in block quotes.

> ```
> some code
> ```

Currently the highlighting is broken since vim-markdown assumes that ``` code fences are at the start of lines.

This fixes the highlight as follows:

Before After
image image

I also added the small clean up at 20c58c1. If you don't want it, please let me know. I'll remove the commit.

rhysd avatar Mar 08 '24 14:03 rhysd