Skip to content

Commit 50bfc1a

Browse files
committed
update template
1 parent 7227451 commit 50bfc1a

File tree

8 files changed

+623
-154
lines changed

8 files changed

+623
-154
lines changed

README.md

Lines changed: 11 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,12 @@
1-
<!-- Delete the chunk from here... -->
2-
3-
> [!IMPORTANT]
4-
> Please visit our [**Wiki**](https://github.com/rdatatoolbox/quarto-template/wiki) to learn more about this Template.
5-
6-
<!-- ... to here -->
7-
8-
9-
101
<!-- Logo & Title -->
112

123
<h1 align="center">
134
<br>
145
<img src="images/readme/logo-readme.png" alt="Logo" width="200">
156
<br>
16-
Quarto template
7+
Code refactoring
178
<br>
18-
HTML presentation w/ RevealJS
9+
Writing and documenting R functions
1910
<br>
2011
</h1>
2112

@@ -24,7 +15,7 @@
2415

2516
<br>
2617
<p align="center">
27-
<a href="https://rdatatoolbox.github.io/quarto-template" target="_blank"><b>View presentation</b></a>
18+
<a href="https://rdatatoolbox.github.io/r-functions" target="_blank"><b>View presentation</b></a>
2819
</p>
2920
<br>
3021

@@ -46,13 +37,13 @@
4637
<br/>
4738

4839
<!-- Quarto render -->
49-
<a href="https://github.com/rdatatoolbox/quarto-template/actions/workflows/quarto-render.yml">
50-
<img src="https://github.com/rdatatoolbox/quarto-template/actions/workflows/quarto-render.yml/badge.svg" alt="GHA render">
40+
<a href="https://github.com/rdatatoolbox/r-functions/actions/workflows/quarto-render.yml">
41+
<img src="https://github.com/rdatatoolbox/r-functions/actions/workflows/quarto-render.yml/badge.svg" alt="GHA render">
5142
</a>
5243

5344
<!-- GitHub deployment -->
54-
<a href="https://github.com/rdatatoolbox/quarto-template/actions/workflows/pages/pages-build-deployment">
55-
<img src="https://github.com/rdatatoolbox/quarto-template/actions/workflows/pages/pages-build-deployment/badge.svg" alt="GHA deploy">
45+
<a href="https://github.com/rdatatoolbox/r-functions/actions/workflows/pages/pages-build-deployment">
46+
<img src="https://github.com/rdatatoolbox/r-functions/actions/workflows/pages/pages-build-deployment/badge.svg" alt="GHA deploy">
5647
</a>
5748
</p>
5849

@@ -72,7 +63,7 @@
7263

7364
## Overview
7465

75-
This repository contains files used to generate the online presentation [Quarto template](https://rdatatoolbox.github.io/quarto-template) based on [Quarto](https://quarto.org/) and the [RevealJS](https://quarto.org/docs/presentations/revealjs/) framework.
66+
This repository contains files used to generate the online presentation [Code refactoring](https://rdatatoolbox.github.io/r-functions) based on [Quarto](https://quarto.org/) and the [RevealJS](https://quarto.org/docs/presentations/revealjs/) framework.
7667

7768

7869
## Usage
@@ -91,14 +82,14 @@ To understand the file organisation of this repository, please read this [Wiki](
9182

9283
## Citation
9384

94-
Casajus N (2024) _A Quarto template for HTML presentation with RevealJS framework_. Online presentation available at <https://github.com/rdatatoolbox/quarto-template/>.
85+
Casajus N (2025) _Code refactoring: Writing and documenting R functions_. Online presentation available at <https://github.com/rdatatoolbox/r-functions/>.
9586

9687

9788
## Contributing
9889

99-
All types of contributions are encouraged and valued. For more information, check out our [Contributor Guidelines](https://github.com/rdatatoolbox/quarto-template/blob/main/CONTRIBUTING.md).
90+
All types of contributions are encouraged and valued. For more information, check out our [Contributor Guidelines](https://github.com/rdatatoolbox/r-functions/blob/main/CONTRIBUTING.md).
10091

101-
Please note that the `quarto-template` project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
92+
Please note that the `r-functions` project is released with a [Contributor Code of Conduct](https://contributor-covenant.org/version/2/1/CODE_OF_CONDUCT.html). By contributing to this project, you agree to abide by its terms.
10293

10394

10495
## Acknowledgments

_quarto.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
project:
2-
title: "Presentation title"
2+
title: "Writing functions"
33

4-
pagetitle: "Presentation title"
4+
pagetitle: "Writing functions"

index.qmd

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ from: markdown+emoji
33
format:
44
revealjs:
55
logo: images/logo-affiliation.png
6-
footer: "{{< fa brands github >}} &nbsp;[`rdatatoolbox/quarto-template`](https://github.com/rdatatoolbox/quarto-template) &nbsp; &bull; &nbsp; {{< fa brands creative-commons >}} {{< fa brands creative-commons-by >}} &nbsp;[`cc-by-4.0`](https://creativecommons.org/licenses/by/4.0/deed.en)"
6+
footer: "{{< fa brands github >}} &nbsp;[`rdatatoolbox/r-functions`](https://github.com/rdatatoolbox/r-functions) &nbsp; &bull; &nbsp; {{< fa brands creative-commons >}} {{< fa brands creative-commons-by >}} &nbsp;[`cc-by-4.0`](https://creativecommons.org/licenses/by/4.0/deed.en)"
77
smaller: true
88
auto-stretch: false
99
chalkboard: true
@@ -19,16 +19,11 @@ engine: knitr
1919
```
2020

2121

22-
<!-- Insert section 'Table of contents' -->
23-
24-
```{r}
25-
#| child: "sections/table-of-contents.qmd"
26-
```
2722

2823

2924
<!-- Insert section 'Quarto basics' -->
3025

3126
```{r}
32-
#| child: "sections/quarto-basics.qmd"
27+
#| child: "sections/main-slides.qmd"
3328
```
3429

0 commit comments

Comments
 (0)