Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix [Bug]: Too much space after webR block in RevealJS #102 #103

Merged
merged 1 commit into from
Nov 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion _extensions/webr/webr-init.html
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@
/* Reset the style of the interactive area */
.reveal div.qwebr-interactive-area {
width: 100%;
height: 100%;
display: block;
box-shadow: none;
max-width: 100%;
Expand Down
2 changes: 2 additions & 0 deletions docs/qwebr-release-notes.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ format:

## Bugfixes

- Fix text added after code cell in RevealJS appearing off the page ([#102](https://github.com/coatless/quarto-webr/issues/102))

## Documentation

- Minor documentation tweaks.
Expand Down
10 changes: 10 additions & 0 deletions tests/qwebr-test-revealjs.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,13 @@ print("Hello quarto-webr RevealJS world!")

3 + 5
```

## Text Before and After Code Cell

Sample text before

```{webr-r}
message("Hello World!")
```

Sample text after