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

Adapt example for new options handling #90

Merged
merged 3 commits into from
Oct 20, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
Next Next commit
Adapt example for new options handling
  • Loading branch information
cderv committed Oct 20, 2023
commit 644f8272feac543305967a3e4a657110fd1c271a
2 changes: 1 addition & 1 deletion 094-purl.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ strsplit('hello world', ' ')

A second chunk.

```{r test-b, fig.width=10, fig.height=7}
```{r test-b, fig.width=10, fig.height=7, dev='svg', dpi = 120}
if (FALSE) plot(1:10)
```

Expand Down
6 changes: 4 additions & 2 deletions 094-purl.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ A second chunk.

```{r}
#| label: test-b
#| fig.width: 10.0
#| fig.height: 7.0
#| fig-width: 10
#| fig-height: 7
#| fig-format: svg
#| fig-dpi: 120
if (FALSE) plot(1:10)
```

Expand Down