Skip to content

Commit 57f90f6

Browse files
committed
feat(pages): update titles + add missing learning objectives
1 parent c8b60ec commit 57f90f6

6 files changed

Lines changed: 38 additions & 6 deletions

File tree

pages/customising/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Customising the site appearance
2+
title: "Exercise 6. Customising the site appearance"
33
---
44

55
themes

pages/inline_html/index.qmd

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
---
2-
title: Inline HTML
2+
title: "Exercise 5. Inline HTML"
33
---
44

5+
::: {.pale-blue}
6+
7+
**On this page we will:**
8+
9+
* See how HTML tags can be mixed into Markdown.
10+
* Use inline HTML for line breaks, small print and keyboard keys.
11+
* Add helpful abbreviations that show full text on hover.
12+
13+
:::
14+
515
Web pages are written in **HTML** (HyperText Markup Language), which uses tags like `<p>`, `<a>`, and `<strong>` to describe how things should look.
616

717
In a Markdown document, you can sometimes mix in small pieces of HTML. This is called **inline HTML**: you add a tiny HTML tag inside a sentence, and Quarto keeps it when it turns your page into HTML.

pages/making_a_change/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Making a change
2+
title: "Exercise 1. Making a change"
33
---
44

55
::: {.pale-blue}

pages/markdown/index.qmd

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
---
2-
title: "Markdown basics"
2+
title: "Exercise 2. Markdown basics"
33
---
44

5+
::: {.pale-blue}
6+
7+
**On this page we will:**
8+
9+
- Learn what Markdown is and how it relates to Quarto.
10+
- Practice headings, emphasis, lists and links.
11+
- Use quotes, code, tables and checklists to structure information.
12+
13+
:::
14+
515
> **Acknowledgements:** This page is adapted from [health-data-science-OR/jupyterlab-introduction](https://github.com/health-data-science-OR/jupyterlab-introduction/blob/main/01_basic_markdown.ipynb).
616
717
## What is markdown?

pages/media/index.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Images, videos and documents
2+
title: "Exercise 4. Images, videos and documents"
33
---
44

55
::: {.pale-blue}

pages/quarto_features/index.qmd

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,20 @@
11
---
2-
title: Quarto features
2+
title: "Exercise 3. Quarto features"
33
bibliography: references.bib
44
---
55

6+
::: {.pale-blue}
7+
8+
**On this page we will:**
9+
10+
* See how Quarto builds on Markdown with extra features.
11+
* Create callouts and columns using fenced blocks.
12+
* Add links that open in a new tab, footnotes, and definition lists.
13+
* Practice citations, cross‑references, math, and line blocks.
14+
* Reuse content with includes.
15+
16+
:::
17+
618
In the last page, you worked with Markdown, which is a simple way to format text that works in lots of tools. Quarto lets you keep using that same Markdown, but it also adds extra features on top.
719

820
Behind the scenes, Quarto uses a program called Pandoc. Pandoc takes your Markdown and converts it into many different formats (for example, HTML, PDF, Word, or slides). On top of Pandoc, Quarto adds its own features and settings (for example, callouts, columns, citations, and cross‑references) that you control from a single `.qmd` file.

0 commit comments

Comments
 (0)