Skip to content
This repository has been archived by the owner on Sep 5, 2023. It is now read-only.

Commit

Permalink
fix(0.20) Adjust metadata for markdown parse
Browse files Browse the repository at this point in the history
Signed-off-by: Jerome Simeon <[email protected]>
  • Loading branch information
jeromesimeon committed Nov 6, 2019
1 parent 4506417 commit 547ebe9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This VSCode extension:

- parses and type-checks '.ergo' files using the Ergo compiler and reports any errors.
- parses and validates '.cto' files using the Concerto parser and reports any errors.
- parses and validates '.tem' files using the Cicero templates parser and reports any errors.
- parses and validates '.md' and '.tem.md' files using the Cicero templates parser and reports any errors.

This extension is currently in beta so please raise any problems you find as an
[issue](https://github.com/accordproject/cicero-vscode-extension/issues).
Expand Down
2 changes: 1 addition & 1 deletion client/out/src/extension.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/out/src/extension.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"onLanguage:ergo",
"onLanguage:concerto",
"onLanguage:ciceroMark",
"onLanguage:plaintext"
"onLanguage:markdown"
],
"main": "./out/src/extension",
"contributes": {
Expand Down
2 changes: 1 addition & 1 deletion client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function activate(context: ExtensionContext) {
{scheme: 'file', language: 'ergo'},
{scheme: 'file', language: 'concerto'},
{scheme: 'file', language: 'ciceroMark'},
{scheme: 'file', language: 'plaintext', pattern: 'text/**/sample*.md'}
{scheme: 'file', language: 'markdown', pattern: '**/sample*.md'}
],
synchronize: {
// Synchronize the setting section 'languageServerExample' to the server
Expand Down

0 comments on commit 547ebe9

Please sign in to comment.