Skip to content

Fix tokenization of <unicode-range> tokens, per spec change. #14

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
Sep 5, 2013
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Formatting fixes in the README
  • Loading branch information
SimonSapin committed Aug 10, 2013
commit 4e7f295918b24b7935da6cdc47bea1d6ff7a3c15
10 changes: 5 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -94,16 +94,16 @@ associated with the expected result.

``color3_hsl.json``
Same as ``color3.json``.
This file is generated the ``make_color3_hsl.py`` Python script.
This file is generated by the ``make_color3_hsl.py`` Python script.

``color3_keywords.json``
Same as ``color3.json``,
except that the values for the Red, Green and Blue channel
are between 0 and 255.
This file is generated the ``make_color3_keywords.py`` Python script.
This file is generated by the ``make_color3_keywords.py`` Python script.

``an+b.json``
Tests the `an+b <http://dev.w3.org/csswg/css-syntax/#the-anb-type>`_
``An+B.json``
Tests the `An+B <http://dev.w3.org/csswg/css-syntax/#the-anb-type>`_
syntax defined in CSS Syntax Level 3.
This `differs <http://dev.w3.org/csswg/css-syntax/#changes>`_ from the
`nth grammar rule <http://www.w3.org/TR/css3-selectors/#nth-child-pseudo>`_
Expand All @@ -121,7 +121,7 @@ AST nodes (the results of parsing) are represented in JSON as follow.
This representation was chosen to be compact
(and thus less annoying to write by hand)
while staying unambiguous.
For example, the difference between @import and \@import is not lost:
For example, the difference between ``@import`` and ``\@import`` is not lost:
they are represented as ``["at-keyword", "import"]`` and ``["ident", "@import"]``,
respectively.

Expand Down