From 91c25a6ef13db614334d7b89e3ec85f61cefc713 Mon Sep 17 00:00:00 2001 From: Wilson Lin Date: Tue, 22 Mar 2022 12:12:03 +1100 Subject: [PATCH] Fix README links to element types --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8a86c1f..7c1150d 100644 --- a/README.md +++ b/README.md @@ -292,10 +292,10 @@ minify-html assumes HTML and SVG elements are used in specific ways, based on st |Group|Elements|Expected children| |---|---|---| -|Formatting|`a`, `strong`, [and others](./src/spec/tag/whitespace.rs)|Formatting elements, text.| -|Content|`h1`, `p`, [and others](src/spec/tag/whitespace.rs)|Formatting elements, text.| -|Layout|`div`, `ul`, [and others](./src/spec/tag/whitespace.rs)|Layout elements, content elements.| -|Content-first|`label`, `li`, [and others](./src/spec/tag/whitespace.rs)|Like content but could be layout with only one child.| +|Formatting|`a`, `strong`, [and others](./rust/common/spec/tag/whitespace.rs)|Formatting elements, text.| +|Content|`h1`, `p`, [and others](rust/common/spec/tag/whitespace.rs)|Formatting elements, text.| +|Layout|`div`, `ul`, [and others](./rust/common/spec/tag/whitespace.rs)|Layout elements, content elements.| +|Content-first|`label`, `li`, [and others](./rust/common/spec/tag/whitespace.rs)|Like content but could be layout with only one child.|
Formatting elements