- From: Kaelig Deloumeau-Prigent via GitHub <noreply@w3.org>
- Date: Tue, 15 Jul 2025 16:18:15 +0000
- To: public-design-tokens-log@w3.org
kaelig has just merged Copilot's pull request 285 for https://github.com/design-tokens/community-group: == Convert markdown to HTML markup in color-type.md ednote section == This PR converts markdown syntax to proper HTML markup in the "Syntax for expressing ranges" ednote section of `/technical-reports/color/color-type.md`. ## Changes Made **Before:** ```html <aside class="ednote" title="Syntax for expressing ranges"> <p> In this table, brackets `[]` indicate that an extrema are included, parentheses `()` indicate that the [extrema](https://en.wikipedia.org/wiki/Maximum_and_minimum) are excluded. For example, in the HSL color space, [hue is in the range of \[0 - 360\)](https://www.w3.org/TR/css-color-4/#hue-syntax), which means that `0` MAY be used but `360` MUST NOT be used. </p> </aside> ``` **After:** ```html <aside class="ednote" title="Syntax for expressing ranges"> <p>In this table, brackets <code>[]</code> indicate that an extrema are included, parentheses <code>()</code> indicate that the <a href="https://en.wikipedia.org/wiki/Maximum_and_minimum">extrema</a> are excluded. For example, in the HSL color space, [hue is in the range of [0 - 360)](<a href="https://www.w3.org/TR/css-color-4/#hue-syntax">https://www.w3.org/TR/css-color-4/#hue-syntax</a>), which means that <code>0</code> MAY be used but <code>360</code> MUST NOT be used.</p> </aside> ``` ## Specific Conversions - Converted backtick code blocks to `<code>` tags: `` `[]` `` → `<code>[]</code>`, `` `()` `` → `<code>()</code>`, `` `0` `` → `<code>0</code>`, `` `360` `` → `<code>360</code>` - Converted markdown link to HTML anchor: `[extrema](https://en.wikipedia.org/wiki/Maximum_and_minimum)` → `<a href="https://en.wikipedia.org/wiki/Maximum_and_minimum">extrema</a>` - Consolidated paragraph content to a single line - Removed unnecessary line breaks within the paragraph All linting checks pass and the formatting is consistent with the rest of the codebase. <!-- START COPILOT CODING AGENT TIPS --> --- 💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click [here](https://survey.alchemer.com/s3/8343779/Copilot-Coding-agent) to start the survey. See https://github.com/design-tokens/community-group/pull/285 -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 15 July 2025 16:18:15 UTC