File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ Parsing CSS involves a series of steps:
37
37
* Component values can then be parsed into generic rules or declarations.
38
38
The header and body of rules as well as the value of declarations
39
39
are still just lists of component values at this point.
40
- See [ the ` ast ` module] ( ast.rs ) for the data structures.
40
+ See [ the ` ast ` module] ( src/ ast.rs) for the data structures.
41
41
42
42
* The last step of a full CSS parser is
43
43
parsing the remaining component values
@@ -48,10 +48,10 @@ Parsing CSS involves a series of steps:
48
48
which depends a lot on what you want to do:
49
49
which properties you want to support, what you want to do with selectors, etc.
50
50
51
- It does however provide some helper functions to parse [ CSS colors] ( color.rs )
52
- and [ An+B] ( nth.rs ) (the argument to ` :nth-child() ` and related selectors.
51
+ It does however provide some helper functions to parse [ CSS colors] ( src/ color.rs)
52
+ and [ An+B] ( src/ nth.rs) (the argument to ` :nth-child() ` and related selectors.
53
53
54
- See [ Servo’s ` style ` crate] ( https://github.com/mozilla/servo/tree/master/src/ components/style )
54
+ See [ Servo’s ` style ` crate] ( https://github.com/mozilla/servo/tree/master/components/style )
55
55
for an example of a parser based on rust-cssparser.
56
56
57
57
You can’t perform that action at this time.
0 commit comments