From 3a31c1e2c0094e8bf9b236cbbf69fece074ca8f8 Mon Sep 17 00:00:00 2001 From: Oliver Klee Date: Fri, 4 Jul 2025 15:17:03 +0200 Subject: [PATCH] [DOCS] Remove cardinalities from the class diagram This brings our class diagram closer to what the latest version of the diagram generator creates. --- README.md | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index c73196015..e95217232 100644 --- a/README.md +++ b/README.md @@ -783,28 +783,28 @@ classDiagram %% end of the generated part - Anchor --> "1" ParserState: parserState - CSSList --> "*" CSSList: contents - CSSList --> "*" Charset: contents - CSSList --> "*" Comment: comments - CSSList --> "*" Import: contents - CSSList --> "*" RuleSet: contents - CSSNamespace --> "*" Comment: comments - Charset --> "*" Comment: comments - Charset --> "1" CSSString: charset - DeclarationBlock --> "*" Selector: selectors - Import --> "*" Comment: comments - OutputFormat --> "1" OutputFormat: nextLevelFormat - OutputFormat --> "1" OutputFormatter: outputFormatter - OutputFormatter --> "1" OutputFormat: outputFormat - Parser --> "1" ParserState: parserState - ParserState --> "1" Settings: parserSettings - Rule --> "*" Comment: comments - Rule --> "1" RuleValueList: value - RuleSet --> "*" Comment: comments - RuleSet --> "*" Rule: rules - URL --> "1" CSSString: url - ValueList --> "*" Value: components + Anchor --> ParserState: parserState + CSSList --> CSSList: contents + CSSList --> Charset: contents + CSSList --> Comment: comments + CSSList --> Import: contents + CSSList --> RuleSet: contents + CSSNamespace --> Comment: comments + Charset --> Comment: comments + Charset --> CSSString: charset + DeclarationBlock --> Selector: selectors + Import --> Comment: comments + OutputFormat --> OutputFormat: nextLevelFormat + OutputFormat --> OutputFormatter: outputFormatter + OutputFormatter --> OutputFormat: outputFormat + Parser --> ParserState: parserState + ParserState --> Settings: parserSettings + Rule --> Comment: comments + Rule --> RuleValueList: value + RuleSet --> Comment: comments + RuleSet --> Rule: rules + URL --> CSSString: url + ValueList --> Value: components ``` ## API and deprecation policy