Skip to content

Commit

Permalink
adds md quarto test with qmd, png, css and yml #28
Browse files Browse the repository at this point in the history
  • Loading branch information
mxochicale committed Jan 26, 2024
1 parent 74a033c commit 9529537
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 43 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/publish.yml
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
43 changes: 0 additions & 43 deletions .github/workflows/slides.yml

This file was deleted.

25 changes: 25 additions & 0 deletions index.qmd
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
Binary file added quarto-logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions quarto-styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@


.border {
border: 1px solid #dee2e6;
}

.border-thick {
border-width: 3px;
}

0 comments on commit 9529537

Please sign in to comment.