@@ -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
1919declare 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,
109109ideal 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
319319put 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
330330on 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
485485The [ ` 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
488488targeting other elements has also been removed in favor of standard [ possessive] ( /expressions/possessive ) and
489489[ ` of ` ] ( /expressions/of ) syntax.
0 commit comments