Fixed example used in README

This commit is contained in:
Tony Bark 2025-02-21 21:23:19 -05:00
parent c63aa228f4
commit f96fcf30e4

View file

@ -67,7 +67,7 @@ Welcome to your adventure! You find yourself at a crossroads.
[[Take the left path -> LeftPath]]
[[Take the right path -> RightPath]]
:#LeftPath
# LeftPath
You walk down the left path and encounter a mysterious stranger.
(set: $hasKey to true)
@ -75,7 +75,7 @@ The stranger gives you a key.
[[Continue -> Crossroads]]
##ightPath
# RightPath
You walk down the right path and find a locked door.
(if: $hasKey)[
@ -87,9 +87,10 @@ You walk down the right path and find a locked door.
[[Return to the crossroads -> Crossroads]]
:: #ossroads
# Crossroads
You're back at the crossroads.
[[Take the left path -> LeftPath]]
[[Take the right path -> RightPath]]
```