Skip to content

Commit 8066c49

Browse files
committed
update js engine version
1 parent cbeee5f commit 8066c49

File tree

4 files changed

+319
-89
lines changed

4 files changed

+319
-89
lines changed

exampleVault/Advanced Examples/DnD 5e Travel Calculator.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@ varMins: 60
2323
| Miles To Travel: `INPUT[number:TravelDistance]` |
2424
| **Days Travel 🕓:** `VIEW[round(({TravelDistance} * ({varMins}/(({BaseSpeed} / ({ExhaustionLevel} > 1 ? 2 : 1) + ({Encumbered} ? -10 : 0) + ({HorseshoesofSpeed} ? 30 : 0) + {AdditionalBonus}) / 10) * {SpeedMultiplier})) / 60 / {HoursPerDay}, 1)]` |
2525

26-
Check out this calculator on [Josh's Publish](https://obsidianttrpgtutorials.com/Obsidian+TTRPG+Tutorials/Plugin+Tutorials/Travel+Calculators/DnD+5e+Travel+Calc/DnD+5e+Travel+Calc).
26+
Check out this calculator on [Josh's Publish](https://obsidianttrpgtutorials.com/Obsidian+TTRPG+Tutorials/Plugin+Tutorials/Travel+Calculators/DnD+5e+Travel+Calc/DnD+5e+Travel+Calc).
27+
28+
```abap
29+
report zdemo_helloworld.
30+
31+
write 'Hello World'.
32+
```

exampleVault/View Fields/View Field.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,7 @@ Markdown:
7070

7171
Null:
7272
`VIEW[{someUnknownValue}][text]`
73-
some text
73+
some text
74+
75+
Input: `INPUT[number:someComputedValue]`
76+
Computed Value: `VIEW[{someInputValue} * 2][math:someComputedValue]`

0 commit comments

Comments
 (0)