Skip to content

Commit 08b9990

Browse files
authored
More syntax highlighting (#2)
* Fixes package.json referencing the wrong snippets file * Replaces image path in README * Adds Pull Request template * Node attributes highlighting * Fixed minor issues with Lin version highlights. * Added highlighting for ascii and bcd values. * Bumps version number and updates changelog
1 parent 4aa3188 commit 08b9990

5 files changed

Lines changed: 315 additions & 34 deletions

File tree

.github/pull_request_template.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
## Brief
2+
3+
Please provide brief information, what this pull request provides or fixes.
4+
5+
<!-- You can remove this section if the PR is purely enhancement -->
6+
7+
### Checklist
8+
9+
- [ ] Check test result and code coverage
10+
- [ ] Update documentation
11+
- [ ] Update changelog
12+
- [ ] Update version number
13+
14+
## Fixes
15+
16+
+ Describe bug, link to issue
17+
18+
<!-- You can remove this section if the PR is a bugfix -->
19+
20+
## Solves
21+
22+
+ Describe the feature this pull request provided, link to issue
23+
24+
<!-- You can skip the evidence part if the PR doesn't modify existing code -->
25+
26+
## Evidence
27+
28+
+ Provide evidence that the pull request doesn't break existing functionality
29+
30+
+ Specifically looking for tests that verify the functionality of both existing and new code
31+
32+
+ When changing core functionality it's important to keep backward compatibility in mind
33+
34+
+ If such a change would occur please provide an impact analysis of the change

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
66

77
## [Unreleased]
88

9+
## [0.2.0] - 2021-11-02
10+
11+
### Added
12+
13+
- Node attributes section is now highlighted
14+
- Ascii and Bcd encoders are highlighted properly
15+
16+
### Fixed
17+
18+
- Fixed snippets path
19+
- Fixed snippet image path in README
20+
921
## [0.1.0] - 2021-11-01
1022

1123
- Initial release

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
The extension provides highlighting of LDF sections.
1515

16-
![syntax-highlight](https://github.com/c4deszes/ldfsyntax/blob/docs/initial-features/images/syntax-highlight.jpg?raw=true)
16+
![syntax-highlight](images/syntax-highlight.jpg)
1717

1818
### Snippets
1919

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"lin"
88
],
99
"license": "MIT",
10-
"version": "0.1.0",
10+
"version": "0.2.0",
1111
"preview": true,
1212
"publisher": "c4deszes",
1313
"repository": {
@@ -48,7 +48,7 @@
4848
"snippets": [
4949
{
5050
"language": "ldf",
51-
"path": "./snippets/snippets.json"
51+
"path": "./snippets/ldf.json"
5252
}
5353
]
5454
},

0 commit comments

Comments
 (0)