-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow skipping markdown between code blocks
- Loading branch information
1 parent
24f2c82
commit 202ea68
Showing
4 changed files
with
43 additions
and
6 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
1 change: 1 addition & 0 deletions
1
internal/renderer/testdata/.snapshots/TestParser_Renderer-doublecode
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 @@ | ||
{"document":[{"markdown":"Runme Examples\n==============\n\nThis `README.md` contains some example for testing this extension.\n\n# Extension Example Markdown Files\n\nThis markdown file contains some custom examples to test the execution within a VS Code Notebook.\n\n## Shell Executions"},{"content":"echo \"Hello World\"\n","description":"Shell Executions","language":"sh","lines":["echo \"Hello World\""]},{"content":"echo \"Foo π\"\nsleep 2\necho \"Bar πΊ\"\nsleep 2\necho \"Loo π\"\n","description":"echo \"Hello World\"\n","language":"sh","lines":["echo \"Foo π\"","sleep 2","echo \"Bar πΊ\"","sleep 2","echo \"Loo π\""]},{"markdown":"## Complexer Output"},{"content":"yarn global add webdriverio\n","description":"Complexer Output","language":"sh","lines":["yarn global add webdriverio"]},{"markdown":"## Stdin Example"},{"content":"node ./scripts/stdin.js\n","description":"Stdin Example","lines":["node ./scripts/stdin.js"]}]} |
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,34 @@ | ||
Runme Examples | ||
============== | ||
|
||
This `README.md` contains some example for testing this extension. | ||
|
||
# Extension Example Markdown Files | ||
|
||
This markdown file contains some custom examples to test the execution within a VS Code Notebook. | ||
|
||
## Shell Executions | ||
|
||
```sh | ||
echo "Hello World" | ||
``` | ||
|
||
```sh | ||
echo "Foo π" | ||
sleep 2 | ||
echo "Bar πΊ" | ||
sleep 2 | ||
echo "Loo π" | ||
``` | ||
|
||
## Complexer Output | ||
|
||
```sh | ||
yarn global add webdriverio | ||
``` | ||
|
||
## Stdin Example | ||
|
||
``` | ||
node ./scripts/stdin.js | ||
``` |