Slipst0.3.0 does not scroll beyond first page and no display in typst web app

I am using Webapp, with sample typst file as appended. In the web app the right window does not show the html output just a blank slide and exported html file scrolls through first page and stops although the counter in the address bar keep increasing,
File :
#import@preview/slipst:0.3.0”: *

#show: slipst.with(
width: 16cm,
spacing: auto,
margin: 0.5cm,
)

= Presentation title

This is the first slip and has a list:

  • One
  • Two

#pause

  • Three

#pause

= Presentation title 2

This is another slip:

  • One
  • Two
  • Three

#pause

= Presentation title 3

This is another slip:

  • One
  • Two
  • Three

#pause

= Presentation title 4

This is another slip:

  • One
  • Two
  • Three

#pause

= Presentation title 5

This is another slip:

  • One
  • Two
  • Three

#pause

= Presentation title 6

This is another slip:

  • One
  • Two
  • Three

#pause

= Welcome to Slipst 7

This presentation flows from top to bottom like a modern web document.

#pause

= Second Slip 8

This part appears after you navigate to the next slip.

  • Item one on our list
  • Item two on our list

Welcome to the forum. Please make sure to read How to post in the Questions category. In particular:

and

Onto the question:

This is just a guess, but since HTML export is still experimental the web app doesn’t yet support everything. The preview doesn’t seem to allow for interaction with the output, so it only shows the first (blank) page. You can try compiling locally with typst watch <filename>.typ --format html --features html

you’re still seeing content on the screen, correct? The slipst documentation says that if you wish to scroll up, you should be inserting #up commands in your document. For example,

= Presentation title
This is the first slip and has a list:
    One
    Two
#pause
    Three

#pause
#up(here)  // <-- This tells slipst to scroll up

= Presentation title 2
This is another slip:
    One
    Two
    Three
1 Like