@markdy/language-server 0.7.20 → 0.7.22

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.
Files changed (2) hide show
  1. package/README.md +8 -6
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -8,16 +8,18 @@ Current capabilities:
8
8
  - hover docs for common actions
9
9
  - document symbols for scenes, actors, defs, and seqs
10
10
 
11
- ## Visual guide
11
+ ## Package position (text)
12
12
 
13
- <p align="center">
14
- <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-tooling-map.webp" alt="Markdy tooling and editor support visual" width="900" />
15
- </p>
13
+ ```text
14
+ Editor -> @markdy/language-server -> @markdy/core parser
15
+
16
+ The server translates parse diagnostics and symbols into LSP responses.
17
+ ```
16
18
 
17
- ## Love Story result
19
+ ## Output preview
18
20
 
19
21
  <p align="center">
20
- <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-love-story-result.webp" alt="Love Story main Markdy result" width="900" />
22
+ <img src="https://raw.githubusercontent.com/HoangYell/markdy-com/main/website/public/images/markdy-output-preview.webp" alt="Markdy output preview" width="900" />
21
23
  </p>
22
24
 
23
25
  Run on stdio:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@markdy/language-server",
3
- "version": "0.7.20",
3
+ "version": "0.7.22",
4
4
  "description": "Language Server Protocol implementation for MarkdyScript.",
5
5
  "license": "MIT",
6
6
  "type": "module",
@@ -44,7 +44,7 @@
44
44
  "dependencies": {
45
45
  "vscode-languageserver": "^9.0.1",
46
46
  "vscode-languageserver-textdocument": "^1.0.12",
47
- "@markdy/core": "0.7.20"
47
+ "@markdy/core": "0.7.22"
48
48
  },
49
49
  "devDependencies": {
50
50
  "tsup": "^8.5.1",