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:
3737* Component values can then be parsed into generic rules or declarations.
3838 The header and body of rules as well as the value of declarations
3939 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.
4141
4242* The last step of a full CSS parser is
4343 parsing the remaining component values
@@ -48,10 +48,10 @@ Parsing CSS involves a series of steps:
4848 which depends a lot on what you want to do:
4949 which properties you want to support, what you want to do with selectors, etc.
5050
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.
5353
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 )
5555 for an example of a parser based on rust-cssparser.
5656
5757
You can’t perform that action at this time.
0 commit comments