Open ooker777 opened 4 months ago
Investigating https://github.com/hakimel/reveal.js/issues/3653 I realize that I need to create a route true. Only in that then I can inject markdown text:
true
const markdown = ` ## Slide 1 A paragraph with some text and a [link](https://hakim.se). --- ## Slide 2 --- ## Slide 3 `; export const handler = () => { return new Response(markdown); };
Why is it designed like that?
I also have no clue why this is is necessary lol
Investigating https://github.com/hakimel/reveal.js/issues/3653 I realize that I need to create a route
true
. Only in that then I can inject markdown text:Why is it designed like that?