Files
Basalt2/node_modules/shiki/samples/marko.sample
Robert Jelic 31787b0e9b Fix
2025-02-16 18:04:24 +01:00

14 lines
296 B
Plaintext

<await(slowPromise) timeout=5000>
<@then>Done</@then>
<@catch|err|>
<if(err.name === "TimeoutError")>
Took too long to fetch the data!
</if>
<else>
Promise failed with ${err.message}.
</else>
</@catch>
</await>
<!-- from https://markojs.com/docs/core-tags/ -->