From 07439f629b92e3496de4c8d0dfebdff650d82454 Mon Sep 17 00:00:00 2001 From: igochkov Date: Mon, 5 Jun 2023 21:24:36 +0200 Subject: [PATCH] Broken links fixed --- LICENSE | 2 +- README.md | 10 ++++------ ebnf.configuration.json | 12 +----------- package.json | 2 +- 4 files changed, 7 insertions(+), 19 deletions(-) diff --git a/LICENSE b/LICENSE index b255d9b..1e411f3 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2016 Ivaylo Gochkov +Copyright (c) 2016-2023 Ivaylo Gochkov Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 7bfed3a..01017a0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,4 @@ # EBNF Tools for Visual Studio Code -[![Version](https://vsmarketplacebadge.apphb.com/version/igochkov.vscode-ebnf.svg)](https://marketplace.visualstudio.com/items?itemName=igochkov.vscode-ebnf) -[![Installs](https://vsmarketplacebadge.apphb.com/installs/igochkov.vscode-ebnf.svg)](https://marketplace.visualstudio.com/items?itemName=igochkov.vscode-ebnf) The EBNF Tools adds language support for the [EBNF](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_Form) syntax notation to Visual Studio Code. @@ -13,16 +11,16 @@ See the [changelog](CHANGELOG.md) for changes and roadmap. - Bracket matching ### Syntax highlighting (colorization) -![Syntax highlighting](https://igochkov.github.io/vscode-ebnf/docs/syntax-highlighting.png) +![Syntax highlighting](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/docs/syntax-highlighting.png) ### Commenting blocks of code -![Commenting blocks of code](https://igochkov.github.io/vscode-ebnf/docs/commenting-block.gif) +![Commenting blocks of code](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/docs/commenting-block.gif) ### Bracket matching -![Brace matching](https://igochkov.github.io/vscode-ebnf/docs/brace-matching.gif) +![Brace matching](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/docs/brace-matching.gif) ## Contribute -Check out the [contribution guidelines](CONTRIBUTING.md) if you want to contribute to this project. +Check out the [contribution guidelines](https://raw.githubusercontent.com/igochkov/vscode-ebnf/master/CONTRIBUTING.md) if you want to contribute to this project. ## License [MIT](LICENSE) diff --git a/ebnf.configuration.json b/ebnf.configuration.json index 7416541..c0c6922 100644 --- a/ebnf.configuration.json +++ b/ebnf.configuration.json @@ -3,38 +3,28 @@ "blockComment": [ "(*", "*)" ] }, "brackets": [ - // repeat symbols [ "{", "}" ], [ "(:", ":)" ], - // option symbols [ "[", "]" ], [ "(/", "/)" ], - // group symbols [ "(", ")" ], - - // other + ["=", ";"] ], - // symbols that are auto closed when typing "autoClosingPairs": [ - // repeat symbols ["{", "}"], ["(:", ":)"], - // option symbols ["[", "]"], ["(/", "/)"], - // comment symbols { "open": "(*", "close": "*)", "notIn": ["string", "comment"] }, - // quote symbols { "open": "\"", "close": "\"", "notIn": ["string", "comment"] }, { "open": "'", "close": "'", "notIn": ["string", "comment"] }, - // other { "open": "=", "close": ";", "notIn": ["string", "comment"] }, { "open": "?", "close": "?", "notIn": ["string", "comment"] } ] diff --git a/package.json b/package.json index aff2ada..dbfd81e 100644 --- a/package.json +++ b/package.json @@ -14,7 +14,7 @@ }, "license": "MIT", "categories": [ - "Languages" + "Programming Languages" ], "keywords": [ "ebnf",