Skip to content

Commit

Permalink
docs: fix typo (#3391)
Browse files Browse the repository at this point in the history
Vestigial line, also change some iframe heights
  • Loading branch information
akshayka authored Jan 9, 2025
1 parent 5025a89 commit cd15a18
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions docs/guides/publishing/playground.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,12 +122,12 @@ providing your users with an interactive code playground.
<iframe
src="https://marimo.app/l/aojjhb?embed=true"
width="100%"
height="300"
height="500"
frameborder="0"
></iframe>
```

<iframe src="https://marimo.app/l/aojjhb?embed=true" width="100%" height="300" class="demo" frameBorder="0"></iframe>
<iframe src="https://marimo.app/l/aojjhb?embed=true" width="100%" height="500" frameBorder="0"></iframe>

### Embedding an existing notebook

Expand All @@ -138,15 +138,12 @@ URL to your notebook](#creating-and-sharing-wasm-notebooks), then put it in an i
<iframe
src="https://marimo.app/l/c7h6pz?embed=true"
width="100%"
height="300"
height="500"
frameborder="0"
></iframe>
```

<iframe src="https://marimo.app/l/c7h6pz?embed=true" width="100%" height="600" class="demo" frameBorder="0"></iframe>

After obtaining a URL to your
notebook,
<iframe src="https://marimo.app/l/c7h6pz?embed=true" width="100%" height="500" frameBorder="0"></iframe>

### Embedding an existing notebook in read-only mode

Expand All @@ -157,9 +154,9 @@ You can optionally render embedded notebooks in read-only mode by appending
<iframe
src="https://marimo.app/l/c7h6pz?mode=read&embed=true"
width="100%"
height="300"
height="500"
frameborder="0"
></iframe>
```

<iframe src="https://marimo.app/l/c7h6pz?mode=read&embed=true" width="100%" height="600" class="demo" frameBorder="0"></iframe>
<iframe src="https://marimo.app/l/c7h6pz?mode=read&embed=true" width="100%" height="500" frameBorder="0"></iframe>

0 comments on commit cd15a18

Please sign in to comment.