vscode-markdown-languageservice icon indicating copy to clipboard operation
vscode-markdown-languageservice copied to clipboard

The language service that powers VS Code's Markdown support, extracted so that it can be reused by other editors and tools

Results 26 vscode-markdown-languageservice issues
Sort by recently updated
recently updated
newest added

Combination of a few different commits about link definitions that I added while on recent plane rides :) - Add option to include link definitions in the document outline. Controlled...

Hi 👋 The ticket https://github.com/microsoft/vscode/issues/40140 added support for following markdown links that specify local paths including line numbers. #### Existing behaviour: Given two files and their content: `a.md`: ``` [b](./b.md#L3)...

## Feature request Add a code action / source action that: - Consolidates link definitions at the end of the file - Sorts link definitions - Potentially removes unused definitions...

## Feature request Add a quick fix on links that goes from: ```md [text](http://example.com) ``` to ```md [text][ref] and rename should be triggered here after change [ref]: http://example.com ```

This problem still occurs even if you disable all extensions and occurs in both stable and insider. The following features do not deal with multibyte characters well. It encodes multibyte...

bug
markdown

Issue Type: Bug 1. For the md: ``` \[text](./bla) ``` :bug: This is recognized as a link even though the `[` is escaped VS Code version: Code - Insiders 1.69.0-insider...

bug
markdown

Does this issue occur when all extensions are disabled?: Yes. (I've tried `Developer: Reload With Extensions Disabled`) - VS Code Version: Code 1.68.0 (4af164ea3a06f701fe3e89a2bcbb421d2026b68f, 2022-06-08T11:44:16.822Z) - OS Version: Windows_NT x64...

bug
markdown

[^fn1]: https://github.blog/changelog/2021-09-30-footnotes-now-supported-in-markdown-fields/ When I use footnotes[^fn1], the language server generates a warning. Here’s a repro, put this is `src/test/diagnostic.test.ts`: ```ts test('Should not generate diagnostic for valid footnotes', withStore(async (store) =>...

enhancement

Link detection currently uses some terrible regular expressions to find document links. This leads to links incorrectly being detected when they should not be, as well as us missing some...

Due to https://github.com/microsoft/vscode/issues/154993 we can't `vscode.open` commands on document links instead we are using an internal command that is unlikely to be supported in other editors