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

Results 10 vim-flavored-markdown issues
Sort by recently updated
recently updated
newest added

This line: `syn region markdownCodeBlock start=" \|\t" end="$" contained` Appears to create issues with nested lists: - First bullet point is fine - Second bullet point is fine - Third...

Steps to reproduce 1. Create new markdown file 2. Write \_\_bold\_\_ It should be parsed as markdownBold Actually it is parsed as markdownItalic

Usually underscores may occur in a latex block. For example, $\sum_{i=1}^{n}{f(x)}$. I can get the right result in pdf via pandoc, but in vim, the content after underscore are still...

This commit reenables emphasis highlighting for Markdown text that is fenced by asterisks, *like so*. It actually updates the definitions for regions `markdownItalic`, `markdownBold`, `markdownBoldItalic`, and `markdownCode` from @tpope's `markdown.vim`...

In the following text (from Apple's Wallet Companion Files), the `>` has been incorrectly marked as an error. `Xcode -> Preference` works but `Xcode->Preference` doesn't. ``` # Xcode Xcode and...

I'm working on adding a little mini-plugin to appropriately highlight other languages within code blocks. Right now it's in the planning stages, but since a few other people have been...

enhancement

Text between asterisks isn't highlighted as emphasized or strong, as text between underscores is (unlike with tpope's syntax file). Also unlike with tpope's markdown, vim-flavored-markdown doesn't make a visual distinction...

I'd like my fenced code to be syntax highlighted even while in raw-mode. Is there already way to have this, or would this be a new feature? This feature doesn't...

Text after fenced section is highlighted as if it were code, if no blank line after end of fence. As soon as I put blank lines before and after the...

In the autocmd block, should the filetype be markdown instead of ghmarkdown? Could this be something that changed recently? If I specify ghmarkdown, the plugin still works, but whenever I...