-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add startup CSS ID & clarify examples (#111)
* Add IDs for startup message & COOP/COEP header status * Directly show the disable option * Cut the amount of output on packages displayed. * Update template * Add documentation for the header classes * Add release note * Bump version * Add test cases for disablign startup status in HTML and RevealJS
- Loading branch information
Showing
11 changed files
with
74 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<script src="https://cdn.jsdelivr.net/npm/[email protected]/min/vs/loader.js"></script> | ||
<script type="module" id="webr-monaco-editor-init"> | ||
<script type="module" id="qwebr-monaco-editor-init"> | ||
|
||
// Configure the Monaco Editor's loader | ||
require.config({ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
title: "Test: No Startup Status Present in HTML Documents" | ||
format: html | ||
engine: knitr | ||
webr: | ||
show-startup-message: false | ||
filters: | ||
- webr | ||
--- | ||
|
||
Ensure that the webR code cell initializes even if the webR status bar is disabled. | ||
|
||
```{webr-r} | ||
print("Hello hidden title world!") | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
--- | ||
title: "Test: No Startup Status Present in RevealJS Presentations" | ||
subtitle: "Examining State" | ||
authors: "Presentation Lead" | ||
format: revealjs | ||
engine: knitr | ||
webr: | ||
show-startup-message: false | ||
filters: | ||
- webr | ||
--- | ||
|
||
## webR in RevealJS | ||
|
||
Ensure that the webR code cell initializes even if the webR status bar is disabled. | ||
|
||
```{webr-r} | ||
print("Hello hidden title world!") | ||
``` |