Files
Basalt2/node_modules/shiki/samples/marko.sample
Robert Jelic b0a4a6da9c Vitepress
2025-02-10 06:53:23 +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/ -->