Skip to content

Commit 8dee456

Browse files
committed
Added changelog.
1 parent ca25a77 commit 8dee456

2 files changed

Lines changed: 32 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [Unreleased]
8+
9+
## 1.0.0 - 2019-01-16
10+
### Added
11+
- First release as signed fork of [Dan Roberts](https://bitbucket.org/DanRoberts/cssparser) 2017-06-08.
12+
- Source link support.
13+
- Changelog
14+
- AppVeyor CI
15+
16+
### Changed
17+
- Refactored project files.
18+
19+
20+
[Unreleased]: https://github.com/visualon/NCrontab-Advanced/compare/v1.0.0...HEAD

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,18 @@
1-
# CSS Parser [![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/visualon/cssparser?branch=master&svg=true)](https://ci.appveyor.com/project/ViceIce/cssparser/branch/master)
1+
# CSS Parser [![Build status](https://ci.appveyor.com/api/projects/status/vuiq6y07u4xihtbc?svg=true)](https://ci.appveyor.com/project/ViceIce/cssparser)
22

33
This is a fork from [Dan Roberts](https://bitbucket.org/DanRoberts/cssparser).
44

5+
A simple CSS and LESS parser to categorise strings of content and optionally generate a hierarchical representation of it.
6+
7+
## Changes
8+
See [Changelog](CHANGELOG.md)
9+
10+
## License
11+
[MIT License](LICENSE)
12+
13+
14+
### Howto
15+
516
This was written to fulfill a need I had to run quickly through a string of CSS and identify what "type" each character was. With an optional ability to parse it into hierarchical data describing nested selectors and/or media queries (most applicable to LESS rather than vanilla CSS since LESS supports nesting of selectors whereas CSS only supports single nesting of a selector within a media query).
617

718
IEnumerable<CategorisedCharacterString> ParseCSS(string content)

0 commit comments

Comments
 (0)