Package Exports
- vscode-html-languageservice
- vscode-html-languageservice/lib/umd/languageFacts/data/html5
- vscode-html-languageservice/lib/umd/languageFacts/data/html5Aria
- vscode-html-languageservice/lib/umd/languageFacts/data/html5Events
- vscode-html-languageservice/lib/umd/languageFacts/data/html5Tags
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vscode-html-languageservice) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
vscode-html-languageservice
HTML language service extracted from VSCode to be reused, e.g in the Monaco editor.
Why?
The vscode-html-languageservice contains the language smarts behind the HTML editing experience of Visual Studio Code and the Monaco editor.
- findDocumentHighlights provides the highlighted symbols for a given position.
- doComplete provides completion proposals for a given location.
- setCompletionParticipants allows participant to provide suggestions for specific tokens.
- doHover provides hover information at a given location.
- format formats the code at the given range.
- findDocumentLinks finds all links in the document.
- findDocumentSymbols finds all the symbols in the document.
- getFoldingRanges return folding ranges for the given document.
- getSelectionRanges return the selection ranges for the given document.
Installation
npm install --save vscode-html-languageservice
License
(MIT License)
Copyright 2016-2019, Microsoft
With the exceptions of data/*.json
, which is built upon content from Mozilla Developer Network
and distributed under CC BY-SA 2.5.