gorilla / css

Package gorilla/css is a CSS3 tokenizer.
https://gorilla.github.io
BSD 3-Clause "New" or "Revised" License
87 stars 36 forks source link

Perform all preprocessing as per the spec. #15

Closed alin04 closed 5 years ago

alin04 commented 5 years ago

The spec indicates there are more preprocessing rules to implement. Namely, in addition to replacing pairs of CRLF, also replace CR (by itself) and FF (by itself) with LF. As well as replace NULL code with the replacement char.

alin04 commented 5 years ago

I see #13 addresses this too...