Skip to content

Commit

Permalink
More syntax highlighting (#2)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
c4deszes authored Nov 2, 2021
1 parent 4aa3188 commit 08b9990
Show file tree
Hide file tree
Showing 5 changed files with 315 additions and 34 deletions.
34 changes: 34 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## Brief

Please provide brief information, what this pull request provides or fixes.

<!-- You can remove this section if the PR is purely enhancement -->

### Checklist

- [ ] Check test result and code coverage
- [ ] Update documentation
- [ ] Update changelog
- [ ] Update version number

## Fixes

+ Describe bug, link to issue

<!-- You can remove this section if the PR is a bugfix -->

## Solves

+ Describe the feature this pull request provided, link to issue

<!-- You can skip the evidence part if the PR doesn't modify existing code -->

## Evidence

+ Provide evidence that the pull request doesn't break existing functionality

+ Specifically looking for tests that verify the functionality of both existing and new code

+ When changing core functionality it's important to keep backward compatibility in mind

+ If such a change would occur please provide an impact analysis of the change
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,18 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how

## [Unreleased]

## [0.2.0] - 2021-11-02

### Added

- Node attributes section is now highlighted
- Ascii and Bcd encoders are highlighted properly

### Fixed

- Fixed snippets path
- Fixed snippet image path in README

## [0.1.0] - 2021-11-01

- Initial release
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

The extension provides highlighting of LDF sections.

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

### Snippets

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"lin"
],
"license": "MIT",
"version": "0.1.0",
"version": "0.2.0",
"preview": true,
"publisher": "c4deszes",
"repository": {
Expand Down Expand Up @@ -48,7 +48,7 @@
"snippets": [
{
"language": "ldf",
"path": "./snippets/snippets.json"
"path": "./snippets/ldf.json"
}
]
},
Expand Down
Loading

0 comments on commit 08b9990

Please sign in to comment.