diff --git a/README.md b/README.md index 8826c5f..e3886a4 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,17 @@ -# Inter HTML Intellisense +# Interjs HTML Intellisense -By now, this extension aims to provide suggestions for Inter conditional attributes -in HTML files. +This extension aims to provide suggestions for Inter's HTML syntax. + +To enable the extension to provide completions for references and conditional properties, you need to create the corresponding HTML comments in any area of the target document: + +```html + + +``` + +You should replace the placeholders 'reference1' and 'reference2' with the actual references' names used in the document, and do the same for the conditional properties. + +`ref` and `conditional` are identifiers, the former is used for declaring the references's names, while the latter is used for declaring conditional properties' names. When you run the following command in Vscode command palette, a message will pop up informing you of the current extension version: @@ -13,4 +23,6 @@ The extension will be activated as soon as an HTML file is opened. You can Downl from [Vscode market place](https://marketplace.visualstudio.com/items?itemName=interjs.inter-intellisense) or from [releases](https://github.com/interjs/inter-intellisense/releases) of this repository. Keep in mind that if you download the extension from the releases, you have to install it directly in vscode. +Check out the video demo by clicking on: video demo. + diff --git a/package-lock.json b/package-lock.json index 9017555..8a0d4b3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "inter-intellisense", - "version": "1.0.0", + "version": "1.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "inter-intellisense", - "version": "1.0.0", + "version": "1.1.0", "license": "MIT", "devDependencies": { "eslint": "^9.2.0", diff --git a/package.json b/package.json index 66b865c..005d2f9 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,12 @@ { "name": "inter-intellisense", - "description": "A vscode extension for Inter HTML intellisense.", + "description": "A Vscode extension for Interjs HTML intellisense.", "repository": { "type": "git", "url": "https://github.com/interjs/inter-intellisense.git" }, "module": "esnext", - "version": "1.0.0", + "version": "1.1.0", "engines": { "vscode": "^1.57.1" },