Fix spreads page: remove (code) tags from table list data

(code "...") is an HTML tag — works in render context but not inside
(list ...) which fully evaluates args. Use plain strings in table rows.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-13 05:42:47 +00:00
parent 085f959323
commit 9d0bd3b0e7

View File

@@ -188,9 +188,9 @@
(~docs/table
:headers (list "Current" "General form" "Direction")
:rows (list
(list (code "collect! / collected") (code "emit! / emitted") "upward (child \u2192 scope)")
(list (code "make-spread") (str "emit! into implicit " "\"parent-attrs\" provider") "upward (child \u2192 parent)")
(list "(nothing yet)" (code "context") "downward (scope \u2192 child)")))
(list "collect! / collected" "emit! / emitted" "upward (child \u2192 scope)")
(list "make-spread" "emit! into implicit parent-attrs provider" "upward (child \u2192 parent)")
(list "(nothing yet)" "context" "downward (scope \u2192 child)")))
(p (code "provide") " creates a named scope with a value (downward) and an accumulator (upward). "
(code "context") " reads the value. " (code "emit!") " appends to the accumulator. "
(code "emitted") " retrieves accumulated values.")