aboutsummaryrefslogtreecommitdiff
path: root/structure
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-06-09 13:52:18 +0100
committerSilvio Rhatto <rhatto@riseup.net>2024-06-09 13:52:18 +0100
commit357f332d1d9e6e0f3952a9584ebbe41a71cbf5bd (patch)
tree5c5ebfb8af21a2ca6206701616d578cb6df2e9ca /structure
parentb8eb79f57af861df5d22d313cb0b77cc159804f8 (diff)
downloadbookup-357f332d1d9e6e0f3952a9584ebbe41a71cbf5bd.tar.gz
bookup-357f332d1d9e6e0f3952a9584ebbe41a71cbf5bd.tar.bz2
Add license and version information in the notebook
Diffstat (limited to 'structure')
-rw-r--r--structure/notes/00-preamble.md32
1 files changed, 32 insertions, 0 deletions
diff --git a/structure/notes/00-preamble.md b/structure/notes/00-preamble.md
new file mode 100644
index 0000000..37d097e
--- /dev/null
+++ b/structure/notes/00-preamble.md
@@ -0,0 +1,32 @@
+<!-- Bookdown HTML before-body file -->
+
+<!-- Hack to generate a proper cover and fix the missing index.html file -->
+<!-- See https://stackoverflow.com/questions/58340924/bookdown-generates-index-file-with-a-chapter-title-instead-of-index-html-when -->
+<!-- See https://bookdown.org/yihui/rmarkdown-cookbook/document-metadata.html -->
+```{r echo=FALSE, results='asis'}
+if (knitr::is_html_output()) {
+ cat('# Início {#index .unnumbered}')
+ cat("\n")
+ cat('<img src="images/cover.png">')
+ cat("\n")
+ cat("<h2>Sobre</h2>")
+ cat("\n")
+ cat('<em>')
+ cat(readLines('DISCLAIMER'), sep='\n')
+ cat('</em>')
+ cat('<br/><br/>')
+ cat('Cardeno Vivo - Versão <strong><em>')
+ cat(readLines('.metadata/revision.txt'), sep='\n')
+ cat('</em></strong> - compilada em <strong><em>')
+ cat(readLines('.metadata/date.txt'), sep='\n')
+ cat('</em></strong>.')
+ cat('<br/><br/>')
+ cat("\n")
+ cat("<h2>Créditos</h2>")
+ cat("\n")
+ cat(paste(rmarkdown::metadata$title, "<br/>", "Copyleft &copy;", readLines('.metadata/year.txt'), rmarkdown::metadata$author, readLines('snippets/contact.txt'), sep=' '))
+ cat('<br/><br/>')
+ cat(readLines('LICENSE'), sep='\n')
+ cat('<br/><br/>')
+}
+```