-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds md quarto test with qmd, png, css and yml #28
- Loading branch information
1 parent
74a033c
commit 9529537
Showing
5 changed files
with
57 additions
and
43 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Quarto Publish | ||
|
||
on: | ||
push: | ||
branches: main | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Publish to GitHub Pages (and render) | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages |
This file was deleted.
Oops, something went wrong.
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,25 @@ | ||
--- | ||
title: "Quarto Presentations" | ||
subtitle: "Create beautiful interactive slide decks with Reveal.js" | ||
format: | ||
revealjs: | ||
slide-number: true | ||
chalkboard: | ||
buttons: false | ||
preview-links: auto | ||
logo: quarto-logo.png | ||
css: quarto-styles.css | ||
footer: <https://quarto.org> | ||
--- | ||
|
||
## Hello, There | ||
|
||
This presentation will show you examples of what you can do with Quarto and [Reveal.js](https://revealjs.com), including: | ||
|
||
- Presenting code and LaTeX equations | ||
- Including computations in slide output | ||
- Image, video, and iframe backgrounds | ||
- Fancy transitions and animations | ||
- Printing to PDF | ||
|
||
...and much more |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,9 @@ | ||
|
||
|
||
.border { | ||
border: 1px solid #dee2e6; | ||
} | ||
|
||
.border-thick { | ||
border-width: 3px; | ||
} |