Skip to content

Commit

Permalink
docs(language_servers): add markmark language server (for Markdown) (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
nikku authored Dec 9, 2022
1 parent c5c2cf0 commit 29c519f
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions docs/src/language_servers.md
Original file line number Diff line number Diff line change
Expand Up @@ -323,6 +323,30 @@ Follow installation instructions on [LSP-lua](https://github.com/sublimelsp/LSP-

Spell check can be provided by [LSP-ltex-ls](https://github.com/LDAP/LSP-ltex-ls).

### markmark

[Markmark](https://github.com/nikku/markmark) is a language server for Markdown files, supporting go to definition / references [and more](https://github.com/nikku/markmark#features).

1. [Install Markmark](https://github.com/nikku/markmark#installation) (requires `Node >= 16`)
2. Open `Preferences > Package Settings > LSP > Settings` and add the `"markmark"` client configuration to the `"clients"`:


```json
{
"clients": {
"markmark": {
"enabled": true,
"command": [
"markmark-lsp",
"--stdio"
],
"selector": "text.html.markdown"
}
}
}
```


## OCaml/Reason

1. Install the [Reason](https://packagecontrol.io/packages/Reason) package from Package Control for syntax highlighting.
Expand Down

0 comments on commit 29c519f

Please sign in to comment.