Skip to content

Commit

Permalink
Upgrade the extension to v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DenisPower1 committed Jun 14, 2024
1 parent e044230 commit f8eca63
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 7 deletions.
18 changes: 15 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
<!--ref = reference1 reference2-->
<!--conditional = conditional conditional-->
```

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:
Expand All @@ -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: <a href="https://drive.google.com/file/d/1A7jAsGBVqXHis-RUyUvBnUiyvKarx4lp/view" target="_blank">video demo</a>.

<img src="./images/sample.gif">
4 changes: 2 additions & 2 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
},
Expand Down

0 comments on commit f8eca63

Please sign in to comment.