Skip to content

Commit bc47953

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents 43b943c + edef6ba commit bc47953

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

www/posts/2026-03-29-hyperscript-0.9.90-is-released.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ There is an [Upgrade Guide](#upgrade-guide) at the bottom of this release note.
1515

1616
### Reactivity
1717

18-
The headline feature of this release is a new [reactivity system](/docs#reactivity) with three features that let you
18+
The headline feature of this release is a new [reactivity system](/docs/reactivity) with three features that let you
1919
declare relationships between values and have them stay in sync automatically.
2020

2121
#### live
@@ -105,7 +105,7 @@ and scope isolation - all declared in a single `<script type="text/hyperscript-t
105105

106106
### DOM-Scoped Variables
107107

108-
[Variables](/docs#scoping) with the `^` prefix are scoped to the element and inherited by all descendants,
108+
[Variables](/docs/language#scoping) with the `^` prefix are scoped to the element and inherited by all descendants,
109109
ideal for component state without polluting the global scope:
110110

111111
```html
@@ -313,7 +313,7 @@ for x in items where x.score > 10 ...
313313

314314
#### clipboard and selection
315315

316-
New [magic symbols](/docs#zoo) for accessing the system clipboard and current text selection:
316+
New [magic symbols](/docs/language#zoo) for accessing the system clipboard and current text selection:
317317

318318
```hyperscript
319319
put clipboard into #paste-target -- async read, auto-awaited
@@ -324,7 +324,7 @@ put selection into #selected-text -- window.getSelection().toString()
324324
#### on resize
325325

326326
[ResizeObserver](https://developer.mozilla.org/en-US/docs/Web/API/ResizeObserver) as a synthetic event,
327-
matching the pattern of [`on mutation`](/docs#mutation) and [`on intersection`](/docs#intersection):
327+
matching the pattern of [`on mutation`](/docs/language#mutation) and [`on intersection`](/docs/language#intersection):
328328

329329
```hyperscript
330330
on resize put `${detail.width}x${detail.height}` into #size
@@ -483,7 +483,7 @@ prefixes, replace them with `#`. Replace `@repeat in Y` with `#for x in Y`.
483483
#### 3. transition requires \* style refs
484484

485485
The [`transition`](/commands/transition) command previously accepted bare identifiers like `width` and `opacity`
486-
as CSS property names. Now that hyperscript has [style literals](/docs#dom-literals) (`*width`, `*opacity`),
486+
as CSS property names. Now that hyperscript has [style literals](/docs/language#dom-literals) (`*width`, `*opacity`),
487487
`transition` requires them for consistency with the rest of the language. The `element` keyword prefix for
488488
targeting other elements has also been removed in favor of standard [possessive](/expressions/possessive) and
489489
[`of`](/expressions/of) syntax.

0 commit comments

Comments
 (0)