diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 10:14:02 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2024-06-06 10:14:02 -0300 |
commit | 08ccaf9c20070f4451b5f304788b608c16c568ed (patch) | |
tree | 7d71d2e852033d83faad7135c9692907b0e75634 | |
parent | bf07dbd3fbb1174efd466247105629571ffcf34d (diff) | |
download | bookup-08ccaf9c20070f4451b5f304788b608c16c568ed.tar.gz bookup-08ccaf9c20070f4451b5f304788b608c16c568ed.tar.bz2 |
Feat: add snippets
-rw-r--r-- | ChangeLog.md | 11 | ||||
-rw-r--r-- | TODO.md | 12 | ||||
-rw-r--r-- | content/published/10-installation/installation.md | 3 | ||||
-rw-r--r-- | snippets/contact.txt | 0 | ||||
-rw-r--r-- | snippets/cover.txt | 0 | ||||
-rw-r--r-- | snippets/keywords.txt | 0 | ||||
-rw-r--r-- | snippets/project.txt | 0 | ||||
-rw-r--r-- | snippets/url.txt | 0 | ||||
-rw-r--r-- | snippets/volume.txt | 0 | ||||
-rw-r--r-- | structure/00-preamble.md | 2 |
10 files changed, 18 insertions, 10 deletions
diff --git a/ChangeLog.md b/ChangeLog.md index 93eb5e0..be29d65 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -1 +1,12 @@ # ChangeLog + +## 2024-06-6 - Initial version + +### Initial version + +* [x] Package a Bookdown-based publishing solution in a project named `bookup` + ("a bookdown-based publishing solution") + or similar, to ease book editing and authorship. +* [x] Use the repository [ensaios][] as base. + +[ensaios]: https://ensaios.fluxo.info @@ -2,14 +2,10 @@ ## Basic -* [ ] Package a Bookdown-based publishing solution in a project named `bookup` - ("a bookdown-based publishing solution") - or similar, to ease book editing and authorship. -* [ ] Usar como base o código do repositório `ensaios`, com eventuais adendos - do repositório `cybersni`. Inicialmente, não é necessário investir tempo em - generalizar tudo ao máximo. O importante é criar uma base comum para os meus - livros, e talvez no futuro generalizar para que possa ser usado por outras - iniciativas. +* [ ] Adicionar funcionalidades existentes no repositório `cybersni`. +* [ ] Inicialmente, não é necessário investir tempo em generalizar tudo ao + máximo. O importante é criar uma base comum para os meus livros, e talvez no + futuro generalizar para que possa ser usado por outras iniciativas. * [ ] Create a basic documentation. * [ ] Notebook support. * [ ] Website support. diff --git a/content/published/10-installation/installation.md b/content/published/10-installation/installation.md index a4230e3..841384a 100644 --- a/content/published/10-installation/installation.md +++ b/content/published/10-installation/installation.md @@ -11,4 +11,5 @@ Setup procedure: * `_biblio.yml`. * `LICENSE`. * `DISCLAIMER`. - * `snippets/`. + * `snippets/{contact,cover,keywords,project,url,volume}.txt`. + diff --git a/snippets/contact.txt b/snippets/contact.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/snippets/contact.txt diff --git a/snippets/cover.txt b/snippets/cover.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/snippets/cover.txt diff --git a/snippets/keywords.txt b/snippets/keywords.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/snippets/keywords.txt diff --git a/snippets/project.txt b/snippets/project.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/snippets/project.txt diff --git a/snippets/url.txt b/snippets/url.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/snippets/url.txt diff --git a/snippets/volume.txt b/snippets/volume.txt new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/snippets/volume.txt diff --git a/structure/00-preamble.md b/structure/00-preamble.md index 4ec71c0..0bfae07 100644 --- a/structure/00-preamble.md +++ b/structure/00-preamble.md @@ -37,7 +37,7 @@ if (knitr::is_html_output()) { cat("\n") cat("<h2>Créditos</h2>") cat("\n") - cat(paste(rmarkdown::metadata$title, "<br/>", "Copyleft ©", readLines('.metadata/year.txt'), rmarkdown::metadata$author, readLines('.metadata/contact.txt'), sep=' ')) + cat(paste(rmarkdown::metadata$title, "<br/>", "Copyleft ©", readLines('.metadata/year.txt'), rmarkdown::metadata$author, readLines('snippets/contact.txt'), sep=' ')) cat('<br/><br/>') cat(readLines('LICENSE'), sep='\n') cat('<br/><br/>') |