Skip to content

Reference: Grammar, Errors & Edge Cases

Introduction · Feature index · Cheatsheet

Identifiers, conformance levels and the versioning rules on this page are stable — frozen with the 1.0 release, because an implementer has to be able to trust them. The built-in function library and the extension tiers are experimental. Each section carries its own badge.


28. File Format & Packaging

Single files: .rea

stablesince 1.0UTF-8 plain text, no metadata

A story file is pure text and carries no metadata at all — that separation is what keeps a .rea readable in any editor, and it is frozen.

A .rea file is a UTF-8 plain text file holding one story's prose and syntax. It carries no metadata of its own — all of that lives in the package manifest.

Packages: .reast

experimentalsince 1.0ZIP: manifest.json + story/ + assets/

Both layouts — packaged (with a manifest) and flat (a single entry file, no metadata) — load today.

A .reast file is a ZIP archive (like EPUB) that bundles one or more parts with their media and metadata, in either a manifest-driven or a flat layout. The on-disk archive layout, the full manifest.json schema, GitHub-repository import, the reader tab bar, session settings (reast.json), progressive loading, delta updates, package signing, minification, and multi-part reading state are documented in full in the engine's .reast package format reference — this section covers only the language-level rules that follow from that format.

For the language-level rules specific to .rext extension modules (which constructs are legal inside one, and why {use} is required to bind them), see When rules differ in .rext files.

29. Identifiers & Naming

stablesince 1.0domain.name, any Unicode except space and dot

Frozen so that a non-English author can name state in their own alphabet and be certain it keeps working.

Naming conventions

ElementConventionExample
Variablesdomain.namestory.player.gold, part.quest.has_key
Functionssnake_casecalculate_damage, greet
Anchorssnake_case#the_clearing
Commandssnake_case{voice}, {wait}
Card IDssnake_case[@dark_elf], [$magic_ring]
Metadata keyssnake_casetitle, draft_date

Variable naming rules

Every variable — every {set} target and every read — must carry a domain prefix: one of the four domains (part., story., shared., context.), or a manifest rename. Persistence is entirely domain-driven; there is no separate persistent/non-persistent variable kind (see Scoping):

rea
{set story.player.gold = 100}
{set story.quest.has_key = true}
{set story.tool.knife = "rusty"}
{set story.role.king.power = 9}

Domain prefixes organize variables into logical namespaces that make the story state self-documenting. Authors choose the free-namespace segments after the domain freely — common patterns include character names, object categories, or story concepts.

The one exception: function parameters are bare, dotless, call-frame-scoped identifiers — not domain-prefixed (see Custom Functions). Loop variables ({for}/{while}) are not exempt — they are ordinary domain-prefixed variables like any other {set} target.

Identifier rules

Each segment of a dotted path (domain or name) follows these rules:

  • May contain any Unicode character except space () and dot (.)
  • Must contain at least one non-digit character (to distinguish from numbers)
  • Case-sensitive

This means non-English authors can use their native alphabet freely:

rea
{set hráč.zlato = 100}
{set 道具.剣 = "katana"}
{set игрок.здоровье = 80}

Simple identifiers (functions, commands, anchors, card IDs) follow the same character rules but do not require a dot.


30. Built-in Functions

String functions

FunctionDescription
length(str)Number of characters
upper(str)Uppercase conversion
lower(str)Lowercase conversion
trim(str)Remove leading/trailing whitespace
contains(str, sub)Check if contains substring
replace(str, old, new)Replace occurrences
split(str, delimiter)Split into array
join(array, delimiter)Join array into string

Math functions

FunctionDescription
abs(n)Absolute value
min(a, b)Minimum of two values
max(a, b)Maximum of two values
round(n)Round to nearest integer
floor(n)Round down
ceil(n)Round up
random(min, max)Random integer in range (inclusive)
clamp(value, min, max)Constrain value to range

Array functions

FunctionDescription
length(arr)Number of elements
append(arr, item)Add to end
remove(arr, item)Remove first occurrence
contains(arr, item)Check if contains item
shuffle(arr)Randomize order
sort(arr)Sort ascending
slice(arr, start, end)Extract sub-array

Geographic functions

Points are written with the @(lat, lng) literal (see Coordinate literals); everything with an extent is built from points by one of these. Every radius is in metres.

FunctionDescription
path(p1, p2, ...)Ordered chain of at least two points; no interior
area(p1, p2, p3, ...)Closed ring of at least three points; the ring closes itself
circle(centre, metres)Everything within metres of a point
buffer(shape, metres)Everything within metres of a path, area, circle or point
distance(a, b)Great-circle metres between two points
bearing(a, b)Heading from a to b, degrees clockwise from north

Collection mutation

Arrays support method-like calls:

rea
{set story.player.inventory = ["sword", "shield"]}
{append(story.player.inventory, "potion")}
{remove(story.player.inventory, "shield")}

Query functions

FunctionDescription
visited(anchor)Has reader visited this anchor?
visit_count(anchor)Number of times visited
turns()Total reader interactions so far
elapsed()Time since story started (seconds)
choice_count()Number of available choices at current point
reader_count()Number of active readers (cooperative)

Randomness & dice functions

FunctionDescription
dice(notation)Roll dice using standard notation (e.g. "2d6+3"). See Section 21

Randomness is seeded, and a reading is replayable. random(), shuffle() and everything built on them (including std/dice) draw from a generator the runtime owns, not from the host's global random source. A story draws one seed when it starts; the reading state carries that seed and the generator's current position, so restoring a save continues the identical sequence and undoing a choice reproduces the rolls that followed it. Restarting a story draws a new seed — a re-read is a genuinely new playthrough.

experimentalsince 1.0random() · shuffle() · std/dice

Every draw comes from a generator the runtime owns and the save file carries, so restoring a save continues the identical sequence. The seed(n) testing function is not implemented — pin the seed through the host engine option instead.

Device & world functions

FunctionDescription
has(feature)Check device capability (e.g. "camera", "gps", "nfc")

Type constructor and conversion functions

FunctionDescription
number(x)Convert to number. number("42")42, number("abc")undefined
string(x)Convert to string. string(42)"42", string(true)"true"
boolean(x)Convert to boolean. Falsy values → false, everything else → true
integer(x)Convert to integer (truncates). integer(3.7)3
datetime("ISO-8601-string")Create datetime from ISO 8601 string (supports * wildcards)
duration("ISO-8601-duration")Create duration from ISO 8601 duration string

A geographic point has literal syntax — @(lat, lng), latitude first (see Section 11) — because a story set in a real place writes a great many of them. Everything with an extent is an ordinary call on points: circle(p, metres), area(p1, p2, p3, ...), path(p1, p2, ...), buffer(shape, metres). distance(a, b) and bearing(a, b) measure the gap between two points, in metres and in degrees clockwise from north. within(point, area) is the function form of point matches area, and within(point, "waypoint_name") reuses a named waypoint's own area rather than making the author repeat its coordinates.

Text variation & localization functions

FunctionDescription
select(value, he="x", she="y", other="z")Return text matching value (fallback with other)
plural(count, one="y", other="z", ...)CLDR pluralization; category from Intl.PluralRules for the host locale
ordinal(n) / ordinal(n, one=..., ...)Ordinal; English suffix only for en* locales, else the locale-formatted number (see below)
formatNumber(value, locale?, style=..., ...)Locale-aware number formatting (see Section 22)
calendar(date, month=..., weekday=..., era=...)Fantasy calendar mapping (see Section 22)

Plural and ordinal categories are resolved from CLDR via Intl.PluralRules, driven by the host-supplied locale — not a per-language table baked into the engine. calendar() is the one function here that is still in development; see the feature index.

Date & time functions

experimentalsince 1.0{formatDate(value, "long")} · {dateDiff(a, b, "d")}

Host-supplied clock, locale and time zone, with formatting through Intl.DateTimeFormat; the style enum is the whole surface, with no author-facing token strings.

Date/time built-ins operate on ISO 8601 strings and millisecond timestamps. The clock, locale and time zone are host-supplied; formatting delegates to Intl.DateTimeFormat (CLDR data). Invalid input returns '' or 0.

FunctionDescription
now()Current timestamp in milliseconds (host clock)
today()Current calendar date as YYYY-MM-DD in the host time zone
formatDate(value, style?)Format a date; style ∈ iso | short | medium | long | full (default medium)
formatTime(value, style?)Format a time of day with the same styles
formatDateTime(value, style?)Format date and time together with the same styles
parseDate(value)Parse a date string to a millisecond timestamp (0 if invalid)
dateDiff(a, b, unit?)Difference a − b; unit ∈ ms | s | m | h | d (default ms)
dayOfWeek(value)Day of week in the host time zone (0 = Sunday, 6 = Saturday)
dateAdd(value, amount, unit?)Add a duration (unit ∈ ms | s | m | h | d | M | y); returns an ISO string
duration(value)ISO 8601 duration as milliseconds — duration("PT30M") is 1800000
between(time, from, to)Is a time of day inside a range; a range crossing midnight is the normal case
elapsed(value)Milliseconds since an instant, from the host clock

The iso style yields YYYY-MM-DD (date), HH:mm:ss (time) or a full ISO 8601 string (date-time). There is no author-facing date-token (YYYY-MM-DD) format string — the style enum is the whole surface.

select() enables pronoun and gendered text variation without branching:

rea
{set char.pronoun = "she"}
{select(char.pronoun, he="He draws his sword", she="She draws her sword", other="They draw their sword")}

plural() follows CLDR plural rules for the host-supplied locale:

rea
You found {plural(gem_count, one="a gem", other="{} gems")}.

For detailed usage of all localization functions, see Section 22.

Testing functions

FunctionDescription
seed(n)Set random seed for deterministic shuffles and random()
snapshot()Capture current state for comparison
rea
{seed(42)}
The coin landed on {~heads|tails}.

With the same seed, every random outcome is reproducible — essential for testing and debugging stories.

Command state

Named commands expose state:

rea
{if rich_check.executed.count > 0 begin}
  You've been checked for wealth before.
{end if}

{rich_check.executed.last_time}

31. Extensibility

experimentalsince 1.0{use "extensions/inventory" as inv}

Declaration-only modules that travel inside the package and are compiled and validated before any prose runs.

Rea is extended in two tiers. Tier 1 — Rea extensions are portable, sandboxed Rea code that travels inside the package (.rext files) plus a reserved std/* standard library shipped with the language itself. Tier 2 — Host extensions are JavaScript supplied by the embedder; they are outside the Rea language proper and reachable only when the embedder provides them.

Tier 1 — Rea extensions (author space, portable, sandboxed)

experimentalsince 1.0declaration-only Rea

Functions, top-level constants, {use} and comments only — any prose node anywhere in the file is a load error.

A Rea extension is a .rext file (see When rules differ in .rext files) containing only declarations: {function}{end function} blocks, top-level {set} constants, {use} and comments. Any prose node — a paragraph, heading, choice group, media, blockquote, dialogue or card definition — anywhere in a .rext is a load error. That restriction is what makes an extension reviewable by eye and mechanically checkable.

Top-level {set} values are the module's private constants. Its functions read them, but they are not story variables: they never appear in exported reading state, two modules may declare the same constant name without colliding, and a module can never overwrite a variable the author declared. A function parameter of the same name shadows the constant. A {set} inside a function body follows ordinary Rea function scoping and does write a story variable — so accumulate loop state by recursion, not by a counter.

Import an extension with {use}, giving it an alias; the written path omits the .rext suffix. Then call its exported functions through the alias:

rea
{use "extensions/inventory" as inv}

Your pack weighs {inv.total_weight()} kg.

Rules:

  • Package-local resolution only — a {use} path resolves inside the package, never the filesystem, never the network.
  • The {use} graph must be acyclic — a cycle fails the load, naming the cycle.
  • Duplicate export names are an error, not first-wins.
  • A {use} of a missing path fails the load (as does a manifest.extensions entry that is not in the archive).

Story (.rea) files may still declare {function}s, but those are private and document-scoped — only extension files export. To share a function across parts, put it in a .rext and {use} it.

std/* — the standard library

experimentalsince 1.0{use "std/dice" as dice}

Resolved from inside the engine rather than the archive or the host, so it works offline on any embedder; std/dice is the first module.

std/* is a reserved namespace resolved from inside the engine, not from the archive and not from the host. {use "std/dice" as dice} therefore works on any host, offline, with no support from the embedder — it ships with the language, rather than being injected by the platform. (Were it injected, a story would render on rea.st and break in a third-party embed, forfeiting the portability the extension system exists for.) An archive .rext resolving under std/ is a load error, and a host extension that declares the std namespace is rejected too.

std/dice exports:

FunctionDescription
d(sides)Roll one die with the given number of sides
roll(count, sides)Sum of count dice of sides sides (bounded by call depth)
advantage(sides)Roll two dice, keep the higher
disadvantage(sides)Roll two dice, keep the lower
rea
{use "std/dice" as dice}

You swing wildly for {dice.roll(2, 6)} damage.

Tier 2 — Host extensions (JavaScript, supplied by the embedder)

experimentalsince 1.0{ns.command args} · {ns.fn()}

JavaScript the embedder registers per player instance; outside the Rea language proper, and a story must declare the namespaces it needs.

Host extensions are JavaScript registered by the embedder per player instance (per engine element), never globally. Two players on one page can hold different host extensions. They contribute:

  • Functions callable from Rea expressions as {ns.fn()}.
  • Command handlers for namespaced commands {ns.command args}. A command requires arguments: a bare {ns.name} with no arguments is a dotted variable reference, not a command.
  • Node renderers that substitute the built-in rendering of a node type.

Hard rule: a host extension that needs a device API emits a bus event, exactly as a built-in sensor command does; engine code never calls a device API on the extension's behalf.

Host extensions are outside the Rea language proper and are reachable only when the embedder provides them. A story declares the host namespaces it needs with manifest.requires; an embedder that has not registered a required namespace refuses to load the story rather than failing mid-chapter.

Custom card types

draft{define card_type location, prefix="📍"}

New bracket prefixes beyond @, $ and &. Specified as a future extension point; custom card *sets* cover most of the need today, so no implementation has started.

Custom card sets ({define cardset …}) are released and cover most of what authors reach for — see Section 17. Beyond them, extensions may in future define new card types with their own bracket prefix, past the built-in @, $ and &:

rea
{define card_type location, prefix="📍", name="Location", fields="name, description, image, coordinates"}

{define location tavern name="The Rusty Anchor", description="A dimly lit tavern near the docks.", image="assets/tavern.webp", coordinates="@(48.1486, 17.1077)"}

You arrive at [📍tavern].

Encryption of extension code

Extension code is never encrypted. The loader rejects an encrypted .rext. Encryption is content protection, not a security boundary — the sandbox constrains an extension identically whether or not its source is encrypted — so forbidding it costs nothing defensively and buys three things:

  1. Validated before prose runs. An unlock code can arrive mid-story; code that only materialises after the reader is committed would fail at the worst possible moment. Plaintext extensions are compiled and checked at load.
  2. Auditable without a key — by reast validate, the editor, and platform moderation.
  3. Runnable by a third-party embedder that holds no key.

To keep a secret out of an extension while still checking it, keep the function generic and plaintext and put the secret in an encrypted .rea chapter via {set}, then verify against that variable rather than embedding it:

rea
{comment extensions/gate.rext — plaintext, generic, holds no secret}
{function unlocked(given, expected) begin}
  {return given = expected}
{end function}
rea
{comment an encrypted .rea chapter carries the secret}
{set crypt.passphrase = "moonlit-antler"}

{input name=attempt, placeholder="Speak the word"}
{if unlocked(attempt, crypt.passphrase) begin}
  The gate swings open.
{end if}

The caveat, stated plainly: an encrypted .rea is not a secret from a determined reader. The key reaches the reader's device in order to render the chapter, so crypt.passphrase is extractable. Encryption protects against spoilers, casual peeking and grepping the archive — not against a motivated attacker. Anything that must be genuinely unforgeable (a competition answer, a paid unlock) has to be verified server-side, which is the platform's job, not the engine's (see also Content Protection).

Sandbox constraints

Rea extensions run in the same sandboxed environment as regular Rea code:

  • No file system access beyond the package
  • No network requests (only declared platform APIs)
  • No arbitrary code execution — a story cannot embed JavaScript, Python or any other language; a Rea extension is sandboxed Rea, and a host extension is the embedder's own code, never injected by the story
  • Memory and computation limits enforced by the runtime — for example, recursion depth bounds std/dice's roll to 64 dice
  • Extension code is never encrypted (see above), so it stays auditable

Conformance levels

stablesince 1.0Core · Standard · Platform

Three declared levels so an implementer can ship a partial engine honestly; frozen, because the whole point is that the label means the same thing everywhere.

Rea defines three conformance levels so that implementers can build partial implementations without claiming full spec compliance. Each level builds on the previous:

LevelSectionsDescription
Core1–7, 9–14, 16, 25–26, 28–29Minimal viable interactive fiction: text, formatting, headings, links, anchors, commands, variables, expressions, control flow, functions, choices, escaping, comments, file format, identifiers. Enough to write branching stories with state.
StandardCore + 8, 15, 17–19, 22–24, 27, 30–31, 32Full single-reader experience: media, events, cards, voice, input/interaction, pluralization, lock, captions, error handling, built-in functions, extensibility, accessibility.
PlatformStandard + 20–21Multi-reader and real-world features: cooperative reading (parallel, vote, whisper, broadcast, race, exclusive, synchronize), real-world interactions (GPS, NFC, QR, camera, sensors). Requires network infrastructure and device APIs.

An implementation MUST declare which conformance level it supports. When a story uses features above the implementation's level, the feature does nothing and the reader sees nothing in its place — see Records and the conformance split for what the author is told.

A Core implementation is sufficient for text-based interactive fiction with choices and variables — competitive with Ink or ChoiceScript. A Standard implementation matches the full single-reader Reast experience. A Platform implementation requires server infrastructure for multi-reader synchronization and device APIs for real-world interaction.

Spec versioning

stablesince 1.0manifest `rea: "1.0"`

MAJOR.MINOR versioning with the forward-compatibility rules a parser must honour. Frozen with the 1.0 release.

Rea follows a MAJOR.MINOR version scheme (inspired by YAML):

  • MAJOR — Breaking changes that may invalidate existing stories
  • MINOR — Backward-compatible additions (new commands, attributes, functions)

1.0 is the first release of the language. Everything published under it is available to authors now, at the maturity its badge declares.

A Rea story declares which spec version it targets using the rea field in manifest.json:

json
{
  "rea": "1.0",
  "title": "The Last Lantern",
  "author": [{ "name": "Elena Voss" }],
  "version": "2.1"
}

Here "rea": "1.0" = "this story uses Rea spec version 1.0", while "version": "2.1" = "this is version 2.1 of the story itself".

If the rea key is omitted, the platform assumes the latest supported version. Parsers MUST reject stories targeting a higher MAJOR version than they support. Parsers SHOULD accept stories targeting a lower MINOR version within the same MAJOR version, ignoring unknown features gracefully.

Feature stability

Every feature in this specification carries an explicit status badge under its own heading, and the whole set is listed on the feature index. There are five:

StatusAvailable today?Meaning
stableYesFrozen. May only change in a new MAJOR version. The prose core of the language is here.
experimentalYesReleased and usable, but may still be refined within this MAJOR version. Most of Rea is at this level today.
developmentNoDesigned and being built. The documented syntax is what it will be, but the engine does not accept it yet.
draftNoSpecified and discussed so the shape of the idea is on record. No implementation has started; the design may still change entirely.
cancelledNeverConsidered and deliberately ruled out. Recorded so the decision stays visible instead of being re-argued.

A version badge accompanies the status only for stable and experimental features — the two that are actually published — and names the spec version the feature became available in. A development or draft feature has no version yet, and a cancelled one never will.

An implementation MAY ship any subset of development and draft features; it MUST NOT claim a conformance level on the strength of them, because a story cannot depend on something no other implementation has. Features added after 1.0 carry their introduction version in the same badge (since 1.1), so an author always knows which spec version a story requires.

A status is not a promise about a date. development says work is under way, draft says the idea is written down and nothing more — neither implies when, or whether, it lands.

Deprecation process

When a feature is deprecated:

  1. The spec marks it with "(Deprecated since X.Y)" and documents the replacement
  2. Parsers MUST continue to support deprecated features for at least one MAJOR version
  3. Parsers SHOULD emit a warning when a deprecated feature is used
  4. The deprecated feature is removed in the next MAJOR version (or later)

Backward compatibility

Parsers conforming to Rea MAJOR.MINOR MUST:

  1. Accept any valid story written for MAJOR.0 through MAJOR.MINOR
  2. Ignore unknown metadata keys (already specified in Section 1)
  3. Skip an unknown command whole — its block included — with no reader-visible warning, and record parse/unknown-command on the author channel
  4. Treat unknown inline formatting as literal text

Rule 3 used to say "display a warning and skip the command block". A warning displayed where is the question the two-channel model of Error Handling answers: never to the reader, always to the author, as a record. The reader sees the block skipped and nothing else.

This ensures forward compatibility: a story written for Rea 1.0 works on a Rea 1.3 parser. A story using Rea 1.3 features works on a Rea 1.0 parser with graceful degradation.

Records and the conformance split

A conformance level governs what an implementation runs, not what it reports. A Core engine emits no records at all — the author channel is a tool-side concern, and a Core embedder that wires nothing up produces nothing. Standard and Platform tooling reports the whole registry.

Where a story uses a feature above the level the implementation claims, the feature does nothing and the author gets meta/above-conformance-level naming the feature and the level it needs. That record is degraded, not error: the implementation behaved correctly, and the author is being told which of their choices did not travel, not that they made a mistake.


32. Accessibility

experimentalsince 1.0WCAG 2.2 Level AA

The author-facing obligations (alt text, meaningful choice text) are in force now; several platform-side criteria depend on features that are still in development.

Rea targets WCAG 2.2 Level AA conformance. The platform handles the technical implementation; the spec defines what authors must and should provide.

Built-in accessibility features

These work automatically, with no author action:

FeatureHow it worksWCAG criteria addressed
Screen reader outputAll narrative text is exposed to assistive technology in reading order1.3.1, 1.3.2, 4.1.2
Keyboard navigationChoices, links, and interactive elements are focusable and activatable via keyboard2.1.1, 2.1.2
Focus managementWhen new content appears (e.g. after a choice), focus moves to the new content2.4.3, 2.4.7
Focus not obscuredSticky UI elements (toolbars, cooperative panels) never fully obscure focused content2.4.11
High contrastPlatform enforces WCAG AA contrast ratios (4.5:1 text, 3:1 large text) in all themes1.4.3, 1.4.11
Reduced motionAnimations and transitions respect prefers-reduced-motion2.3.3
Target sizeAll interactive targets (choices, buttons, links) meet minimum 24×24 CSS pixel size2.5.8
Dragging alternativesAny drag-based interaction provides a single-pointer click alternative2.5.7
Status announcementsNew narrative content and state changes use ARIA live regions for screen reader users4.1.3
Audio controlAuto-playing audio provides visible pause/stop controls within 3 seconds1.4.2
Timing adjustableTimed events ({timer}) offer extend, pause, or disable options before they start2.2.1
Consistent helpHelp mechanisms appear in the same relative position across all platform pages3.2.6
Redundant entryThe platform auto-populates previously entered data within a reading session3.3.7
Accessible authAuthentication supports password managers and does not require cognitive function tests3.3.8
Cooperative presenceReader presence indicators include non-visual cues (sound, vibration)1.3.3

Author responsibilities

Authors contribute to accessibility through existing syntax:

  • Alt text on images — Required by the image syntax: [!alt text < source]. Images without alt text trigger a validation warning.
  • Voice/audio descriptions{voice begin} content is automatically available as an audio description for visual scenes.
  • Meaningful choice text — Choices should describe the action, not just "Option A" or "Click here".
  • Captions on time-based media — Use the {caption ...} command (see Section 24) to provide text alternatives for audio and video.

Interactive element accessibility paths

Rea elementKeyboard pathScreen reader behavior
Choice (standard)Tab to focus, Enter/Space to selectAnnounced as button with choice text
Choice (verb-target)Tab to focus, Enter/Space to selectAnnounced as button with verb and target description
{input} text fieldTab to focus, type to enterAnnounced as text input with label from preceding text
{timer} countdownNot focusable (decorative)Remaining time announced at intervals via live region
Card (reveal/dismiss)Tab to focus, Enter to toggleAnnounced as expandable region with summary text
Link [text > url]Tab to focus, Enter to followAnnounced as link with visible text
GPS waypoint promptFocus moves to prompt automaticallyAnnounced as alert with location instruction
QR code scan promptFocus moves to prompt automaticallyAnnounced as alert with fallback manual-entry option

Design Notes

What Rea intentionally omits

Each of these was considered and ruled out. They appear on the feature index as cancelled, so the decision stays visible rather than being rediscovered and re-argued.

  • Numbered & bulleted lists — Not included by design. Interactive stories don't use list formatting, * and - are already the choice and gather markers, and choices fill the role naturally. Structured data belongs in an array.
  • Table markup — Not included. A data table is not a storytelling construct, and supporting one would drag column alignment and cell spanning into a prose language.
  • HTML passthrough — Permanently excluded. Raw markup injection would make every story an XSS surface and would let one author's markup break another host's rendering.
  • CSS styling — Permanently excluded. Visual presentation is the platform's responsibility, so that a reader's own preferences — contrast, font size, dark mode — can never be overridden by a story.
  • Programming language embedding — Permanently excluded. A story is untrusted content; embedding JavaScript, Python or anything else would destroy the sandbox. Sandboxed .rext extensions and embedder-supplied host extensions cover the real need.
  • try / catch — Ruled out with the error model. All recovery is implicit, because a reader must never be shown a failure and an author should never have to write one.

Resolved design decisions

DecisionResolutionRationale
Link syntax[text > url]Unified bracket syntax, arrow shows direction
Attribute separatorCommasUniversal separator for parameters and array items, unambiguous parsing
Anchor separator_ underscoreConsistent with variable naming convention
Function namingsnake_caseMatches all other Rea identifiers
Heading levelsUnlimited # depthPlatform renders up to N levels distinctly
Variable domainspart., story., shared., context. — exactly fourClear namespacing; context. is read-only platform data
Variable namingdomain.name required for every variableSelf-documenting state; any Unicode except space and dot
Assignment syntax{set domain.var = value}Explicit, unambiguous, beginner-friendly
Equality operator= (single equals)Simpler for non-programmers. {set} prevents ambiguity.
Comment syntax{comment text} and {comment begin}...{end comment}One syntax, single-line and paired; only the exact {comment begin} opens a block
Underline markup{underline begin}text{end underline}Command syntax — consistent with strike/mono
Regex operatormatches / !matches keywordSelf-documenting, ! prefix for negation consistent with !=, !in
String concatenation+ operator (dual arithmetic/concat)If either operand is a string, + concatenates; otherwise numeric addition
Type conversionnumber(), string(), boolean(), integer()Explicit conversion functions; implicit coercion only in expressions
Domain types@(lat, lng), datetime(), duration()A literal for points, ordinary constructors for everything with an extent
Select/plural argsNamed parameters key="value"Unified with command attribute syntax, no special object pattern
Save/progress{checkpoint} commandExplicit save points; platform auto-saves at chapter boundaries and choices
Array indexing0-basedConsistent with all mainstream languages (JS, Python, C). First item is index 0