-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #227 from r-devel/quarto
ποΈ Convert book to Quarto
- Loading branch information
Showing
23 changed files
with
84 additions
and
120 deletions.
There are no files selected for viewing
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 @@ | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: main | ||
|
||
name: Quarto Publish | ||
|
||
jobs: | ||
build-deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Set up Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
|
||
- name: Render and Publish | ||
uses: quarto-dev/quarto-actions/publish@v2 | ||
with: | ||
target: gh-pages | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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 |
---|---|---|
|
@@ -10,3 +10,6 @@ rdevguide.tex | |
|
||
# temp files | ||
*~ | ||
|
||
/.quarto/ | ||
_book |
This file was deleted.
Oops, something went wrong.
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,52 @@ | ||
project: | ||
type: book | ||
|
||
book: | ||
title: "R Development Guide" | ||
author: "R Contribution Working Group" | ||
date: today | ||
favicon: img/favicon.png | ||
site-url: https://contributor.r-project.org/rdevguide | ||
repo-url: https://github.com/r-devel/rdevguide | ||
repo-branch: main | ||
repo-actions: [edit, issue] | ||
chapters: | ||
- index.qmd | ||
- introduction.qmd | ||
- getting_started.qmd | ||
- issue_tracking.qmd | ||
- reporting_bugs.qmd | ||
- submitting_feature_requests.qmd | ||
- reviewing_bugs.qmd | ||
- finding_the_source.qmd | ||
- lifecycle_of_a_patch.qmd | ||
- documenting.qmd | ||
- message_translations.qmd | ||
- testing_pre_release_r_versions.qmd | ||
- r_core_developers.qmd | ||
- where_to_get_help.qmd | ||
- news_and_announcements.qmd | ||
- developer_tools.qmd | ||
|
||
format: | ||
html: | ||
theme: cosmo | ||
include-in-header: header.html | ||
description-meta: "This guide is a comprehensive resource for contributors (from all levels, beginners, intermediate, and seasoned) to the R project, facilitating their onboarding and helping them navigate the contribution process." | ||
pdf: | ||
documentclass: scrreprt | ||
include-in-header: preamble.tex | ||
include-before-body: frontpage.tex | ||
epub: | ||
cover-image: img/cover_page_scriberia.png | ||
|
||
# book_filename: "rdevguide" | ||
# chapter_name: "Chapter " | ||
# repo: https://github.com/r-devel/rdevguide | ||
# url: 'https\://contributor.r-project.org/rdevguide/' | ||
# github-repo: "r-devel/rdevguide" | ||
# output_dir: docs | ||
# clean: [packages.bib, bookdown.bbl] | ||
# new_session: yes | ||
# edit: https://github.com/r-devel/rdevguide/edit/main/%s | ||
# delete_merged_file: true |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 |
---|---|---|
@@ -1,10 +1,3 @@ | ||
<link rel="shortcut icon" href="img/favicon.png" /> | ||
<!-- see https://plausible.io/contributor.r-project.org%2Frdevguide for analytics dashboard --> | ||
<script defer data-domain="contributor.r-project.org/rdevguide" src="https://plausible.io/js/plausible.js"></script> | ||
|
||
<script> | ||
// add little icons to top left of note box | ||
$( document ).ready(function() { | ||
$(".note").append("<div class='note-icon'><img src='img/information.svg'></img></div>") | ||
}); | ||
</script> |
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.