hrx-parser 0.1.1

A hrx parser
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<===> input.scss
ul {
  margin-left: 1em;
  li {
    list-style-type: none;
  }
}

<===> output.css
ul {
  margin-left: 1em;
}
ul li {
  list-style-type: none;
}