Skip to content

Commit edef6ba

Browse files
Fix broken links in 9.9.0 release post (#668)
1 parent a13de2c commit edef6ba

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

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
@@ -103,7 +103,7 @@ and scope isolation - all declared in a single `<script type="text/hyperscript-t
103103

104104
### DOM-Scoped Variables
105105

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

109109
```html
@@ -311,7 +311,7 @@ for x in items where x.score > 10 ...
311311

312312
#### clipboard and selection
313313

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

316316
```hyperscript
317317
put clipboard into #paste-target -- async read, auto-awaited
@@ -322,7 +322,7 @@ put selection into #selected-text -- window.getSelection().toString()
322322
#### on resize
323323

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

327327
```hyperscript
328328
on resize put `${detail.width}x${detail.height}` into #size
@@ -481,7 +481,7 @@ prefixes, replace them with `#`. Replace `@repeat in Y` with `#for x in Y`.
481481
#### 3. transition requires \* style refs
482482

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

0 commit comments

Comments
 (0)