Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions files/en-us/glossary/character_reference/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ A very small subset of useful named character references along with their unicod
| | ` ` | U+000A0 |
| – | `–` | U+02013 |
| — | `—` | U+02014 |
| © | `©` | U+000A9 |
| ® | `®` | U+000AE |
| ™ | `™` | U+02122 |
| © | `©` | U+000A9 |
| ® | `®` | U+000AE |
| ™ | `™` | U+02122 |
| ≈ | `≈` | U+02248 |
| ≠ | `≠` | U+02260 |
| £ | `£` | U+000A3 |
Expand Down
3 changes: 1 addition & 2 deletions files/en-us/web/css/reference/properties/content/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,7 @@ This example is useful for print stylesheets. It uses an [attribute selector](/e
#### CSS

```css
a[href^="https://"]::after
{
a[href^="https://"]::after {
content: " (URL: " attr(href) ")";
color: darkgreen;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,7 @@ This example disables pointer events on the link to `http://example.com`.
#### CSS

```css
a[href="http://example.com"]
{
a[href="http://example.com"] {
pointer-events: none;
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ a[title] {
}

/* <a> elements with an href matching "https://example.org" */
a[href="https://example.org"]
{
a[href="https://example.org"] {
color: green;
}

Expand Down Expand Up @@ -111,8 +110,7 @@ a[href$=".org"] {
}

/* Links that start with "https://" and end in ".org" */
a[href^="https://"][href$=".org"]
{
a[href^="https://"][href$=".org"] {
color: green;
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,9 @@ The attributes syntax is designed to be extensible — although only `type` is s
- Resolution: the attribute is part of the module specifier (the string in the `from` clause). Therefore, given the same string path, different attributes may lead to entirely different modules being loaded. For example, [TypeScript supports the `resolution-mode` attribute](https://devblogs.microsoft.com/typescript/announcing-typescript-5-3/#stable-support-resolution-mode-in-import-types).

```ts
import type { TypeFromRequire } from "pkg" with { "resolution-mode": "require" };
import type { TypeFromRequire } from "pkg" with {
"resolution-mode": "require",
};
```

- Fetching: for example, CSS modules are fetched with the [`destination`](/en-US/docs/Web/API/Request/destination) set to `"style"`, and JSON modules are fetched with `destination: "json"`. This means given the same destination URL, the server may still return different content.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"markdownlint-rule-search-replace": "1.2.0",
"node-html-parser": "^7.0.1",
"parse-diff": "^0.11.1",
"prettier": "3.6.2",
"prettier": "3.7.1",
"tempy": "^3.1.0",
"yaml": "^2.8.1",
"yargs": "^18.0.0"
Expand Down
8 changes: 4 additions & 4 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4978,10 +4978,10 @@ prepend-http@^2.0.0:
resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
integrity sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==

prettier@3.6.2, prettier@^3.2.5:
version "3.6.2"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.6.2.tgz#ccda02a1003ebbb2bfda6f83a074978f608b9393"
integrity sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==
prettier@3.7.1, prettier@^3.2.5:
version "3.7.1"
resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.7.1.tgz#8dfbf54c98e85a113962d3d8414ae82ff3722991"
integrity sha512-RWKXE4qB3u5Z6yz7omJkjWwmTfLdcbv44jUVHC5NpfXwFGzvpQM798FGv/6WNK879tc+Cn0AAyherCl1KjbyZQ==

pretty-ms@^9.0.0:
version "9.2.0"
Expand Down
Loading