A more detailed example of using `Scroller` with graphics created by [ai2svelte](https://github.com/reuters-graphics/ai2svelte).
```svelte
```
When working with a Google doc, here's an example of how you can tie your text into your steps.
```yaml
# Google doc block
Type: scroller
ID: map-scrolly
Step1Text: #### Step 1
Lorem Ipsum
:end
Step2Text: #### Step 2
Lorem Ipsum
:end
Step3Text: #### Step 3
Lorem Ipsum
:end
```
```svelte
{#each content.blocks as block}
{#if block.Type === 'text'}
{:else if block.Type === 'scroller' && block.ID === 'map-scrolly'}
{/if}
{/each}
```