Skip to content

Commit c6e614d

Browse files
committed
Added CHANGELOG
1 parent effea70 commit c6e614d

File tree

2 files changed

+18
-6
lines changed

2 files changed

+18
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [1.2.5] - 2020-12-20
9+
10+
- Added initial template inheritance support for Twig and Mustache like template engines.

README.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Missing CSS support for HTML documents.
99
- Supports completion from `<link rel="stylesheet">` and `<style></style>` tags.
1010
- Supports completion from additional style sheets.
1111

12-
## Example
12+
## Including Style Sheets
1313

1414
In the following HTML file, completion will suggest for all `id` and `class` attributes. All
1515
local links point to same `site.css` file.
@@ -64,7 +64,13 @@ local links point to same `site.css` file.
6464
}
6565
```
6666

67-
If it is not possible to specify local or remote styles within each HTML file, they can be specified in VS Code settings per workspace folder in `.vscode/settings.json` and will suggest for all HTML files within that workspace folder:
67+
## Template Inheritance
68+
69+
Template inheritance is supported for **`{% extends "base" %}`** and **`{{< base }}`** tags.
70+
71+
## Additional Style Sheets
72+
73+
If it is not possible to specify local or remote styles within each HTML file or via template inheritance, they can be specified in VS Code settings per workspace folder in `.vscode/settings.json` and will suggest for all HTML files within that workspace folder:
6874

6975
**`.vscode/settings.json`**
7076
```js
@@ -84,10 +90,6 @@ If it is not possible to specify local or remote styles within each HTML file, t
8490
]
8591
```
8692

87-
## Template Inheritance
88-
89-
Template inheritance is supported for **`{% extends "base" %}`** and **`{{< base }}`** tags. Inheritance hierarchy will be scanned for `<link rel="stylesheet">` and `<style></style>` tags.
90-
9193
## Supported Languages
9294

9395
Supported languages can be configured with the `css.enabledLanguages` setting. By default

0 commit comments

Comments
 (0)