typescript-language-server 4.3.3 → 4.3.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,6 +1,13 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [4.3.4](https://github.com/typescript-language-server/typescript-language-server/compare/v4.3.3...v4.3.4) (2025-02-26)
5
+
6
+
7
+ ### Bug Fixes
8
+
9
+ * **previewer:** mark `[@example](https://github.com/example)` and `[@default](https://github.com/default)` code blocks as TS ([#918](https://github.com/typescript-language-server/typescript-language-server/issues/918)) ([184c60d](https://github.com/typescript-language-server/typescript-language-server/commit/184c60de3308621380469d6632bdff2e10f672fd))
10
+
4
11
  ## [4.3.3](https://github.com/typescript-language-server/typescript-language-server/compare/v4.3.2...v4.3.3) (2024-02-09)
5
12
 
6
13
 
package/README.md CHANGED
@@ -6,7 +6,7 @@
6
6
 
7
7
  [Language Server Protocol](https://github.com/Microsoft/language-server-protocol) implementation for TypeScript wrapping `tsserver`.
8
8
 
9
- Based on concepts and ideas from https://github.com/prabirshrestha/typescript-language-server and originally maintained by [TypeFox](https://typefox.io).
9
+ Originally based on concepts and ideas from https://github.com/prabirshrestha/typescript-language-server and maintained by [TypeFox](https://typefox.io). The core logic for interacting with `tsserver` is nowadays mostly based on the code of the `TypeScript Language Features` VSCode bundled extension maintained in https://github.com/microsoft/vscode.
10
10
 
11
11
  Maintained by a [community of contributors](https://github.com/typescript-language-server/typescript-language-server/graphs/contributors) like you.
12
12
 
package/lib/cli.mjs CHANGED
@@ -19856,7 +19856,7 @@ function getTagBodyText(tag, filePathConverter) {
19856
19856
  if (/^\s*[~`]{3}/m.test(text)) {
19857
19857
  return text;
19858
19858
  }
19859
- return '```\n' + text + '\n```';
19859
+ return '```typescript\n' + text + '\n```';
19860
19860
  }
19861
19861
  const text = convertLinkTags(tag.text, filePathConverter);
19862
19862
  switch (tag.name) {