Releases: markdoc/language-server
Releases · markdoc/language-server
0.0.13
0.0.12
What's Changed
- Bump semver from 7.5.1 to 7.5.4 in /client by @dependabot in #14
- Improves the partial panel by @rpaul-stripe in #15
- Fixes completion spacing by @rpaul-stripe in #16
- Allow Language Server to be used as standalone process independent of VS Code Extension by @ferntheplant in #17
- Fixes file watcher by @rpaul-stripe in #18
New Contributors
- @ferntheplant made their first contribution in #17
Full Changelog: 0.0.11...0.0.12
0.0.11
0.0.10
What's Changed
- Use a resolver for table conversion by @rpaul-stripe in #12
Full Changelog: 0.0.9...0.0.10
0.0.9
- Updates the language server to use Markdoc 0.3.2
0.0.8
What's Changed
- Adds table converter code action by @rpaul-stripe in #9
- Adds symbol provider by @rpaul-stripe in #10
Full Changelog: 0.0.7...0.0.8
0.0.7
What's Changed
- Improved autocomplete and enabled schema customization by @rpaul-stripe in #8
Full Changelog: 0.0.6...0.0.7
0.0.6
What's Changed
- Automatically updates preview on save and makes custom language server loading more robust by @rpaul-stripe in #7
Full Changelog: 0.0.5...0.0.6
0.0.5
What's Changed
- Updates the language server to use Markdoc 0.3.0
- Makes the formatting provider respect Markdoc parsing configuration
- Modifies the formatting provider test cases to account for the parser retaining the list symbol
- Adds support for enabling slots
Full Changelog: 0.0.4...0.0.5
0.0.4
- Introduces a dedicated "markdoc" language identifier that is used instead of identifying Markdoc content as Markdown. This helps us avoid conflicts with Visual Studio Code's built-in Markdown language server. Note that this change requires users to either adopt a specialized file extension for Markdoc content (we support
.markdoc
,.markdoc.md
, or.mdoc
) or add afiles.associations
mapping for*.md
files. Refer to the relevant section of the README for more details. (#4) - Adds a selection range provider that supports using the shrink and expand selection feature to highlight Markdoc tag content (#3)
- Fixes a bug that resulted in invalid content ranges throwing errors for linked editing and other features when operating on a malformed document (#5)