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:
@@ -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.")
|
||||
|
||||
Reference in New Issue
Block a user