Skip to content

Commit 94ed508

Browse files
docs(EXPLAINME): convert Markdown code fences to AsciiDoc source blocks (#85)
Replaces 4 Markdown ```language fences (2 rescript, 2 elixir) with AsciiDoc [source,language] / ---- form. Both fences live inside ____ cite blocks (verbatim README quotes); asciidoctor handles source blocks nested in cites without needing list-continuation markers. Part of the cross-estate "EXPLAINME.adoc quote fixes" sweep (5 affected repos, 30 markers total). Co-authored-by: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent 49e9266 commit 94ed508

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

EXPLAINME.adoc

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,13 @@ The README makes claims. This file backs them up with evidence from real code.
1313
____
1414
All state transitions are **pure functions**:
1515
16-
```rescript
16+
[source,rescript]
17+
----
1718
type model = { /* app state */ }
1819
type msg = AddComponent | DragMove | Deploy | Simulate | ...
1920
let update: (model, msg) => (model, effect<msg>)
2021
let view: model => React.element
21-
```
22+
----
2223
2324
Time-travel debugging. Fully testable. Predictable.
2425
____
@@ -48,7 +49,8 @@ ____
4849

4950
**From README** (lines 237-260):
5051
____
51-
```elixir
52+
[source,elixir]
53+
----
5254
# Store stack with multiple modalities
5355
VeriSim.insert(%{
5456
uuid: "stack-abc123",
@@ -67,7 +69,7 @@ VeriSim.sparql_query("""
6769
?component stapeln:exposesPort 22 .
6870
}
6971
""")
70-
```
72+
----
7173
____
7274

7375
**Evidence**: `/var/mnt/eclipse/repos/fleet-ecosystem/stapeln/backend/lib/verisimdb_integration.ex` integrates VeriSimDB graph, semantic (RDF), and temporal modalities. Stack data stored via `VeriSim.insert/1` with structured UUID and metadata at `/var/mnt/eclipse/repos/fleet-ecosystem/stapeln/backend/lib/components/stack.ex`.

0 commit comments

Comments
 (0)