Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ianalexmac authored Jul 31, 2024
2 parents 0ce3d45 + 086e45c commit 85ccf04
Show file tree
Hide file tree
Showing 10 changed files with 1,796 additions and 557 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/quarto-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ name: Render and Publish
jobs:
build-deploy:
runs-on: ubuntu-latest
concurrency:
group: pages-deploy
cancel-in-progress: true
steps:
- name: Check out repository
uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions _citations.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ day_2digit = date.getDate().toString().padStart(2, "0");
currentDate = `${month} ${day}, ${year}`
// build a button
button = (blob, filename = 'test.bib', displayname) => {
citation_button = (blob, filename = 'test.bib', displayname) => {
const button = DOM.download(
blob,
filename,
Expand Down Expand Up @@ -49,7 +49,7 @@ biblatex_blob = new Blob([biblatexContent], { type: 'text/plain' });
ris_blob = new Blob([risContent], { type: 'text/plain' });
// Insert blobs into buttons
button(biblatex_blob, 'aetr_web_book_2024.bib', 'BibLaTeX');
button(ris_blob, 'aetr_web_book_2024.ris', 'RIS');
citation_button(biblatex_blob, 'aetr_web_book_2024.bib', 'BibLaTeX');
citation_button(ris_blob, 'aetr_web_book_2024.ris', 'RIS');
```
8 changes: 8 additions & 0 deletions _quarto-pdf.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,16 @@ book:

chapters:
- index.qmd
- methods.qmd
- consumption.qmd
- prices.qmd
- conclusions.qmd
- data.qmd
appendices:
- about.qmd
- historic_reports.qmd
- acronyms.qmd
- credits.qmd

# These change page titles https://quarto.org/docs/books/book-structure.html#parts-appendices
# but not in the sidebar navigation or in cross-references
Expand Down
Loading

0 comments on commit 85ccf04

Please sign in to comment.