aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2024-10-06 20:43:47 -0300
committerSilvio Rhatto <rhatto@riseup.net>2024-10-06 20:43:47 -0300
commit92b9b197cb9f31321069df081393f8e0791d829c (patch)
treed5a0d8b73e6b749f1852b0ec4d7b0a7b11d7459e
parentf1a14aebedceddece373dde4fb9ee1a542f1d970 (diff)
downloadbookup-92b9b197cb9f31321069df081393f8e0791d829c.tar.gz
bookup-92b9b197cb9f31321069df081393f8e0791d829c.tar.bz2
Fix: NULL at the end of the PDF TOC (2)0.2.4
-rw-r--r--ChangeLog.md4
-rw-r--r--structure/book/en/00-preamble.md1
-rw-r--r--structure/book/pt-br/00-preamble.md4
3 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog.md b/ChangeLog.md
index 57adace..b72c275 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
# ChangeLog
+## v0.2.4 - 2024-10-06
+
+* [x] Apply the previous `NULL` fix to the portuguese template.
+
## v0.2.3 - 2024-10-06
* [x] Fix a `NULL` at the end of TOC in the PDF version.
diff --git a/structure/book/en/00-preamble.md b/structure/book/en/00-preamble.md
index 4c15c09..cc6a3cb 100644
--- a/structure/book/en/00-preamble.md
+++ b/structure/book/en/00-preamble.md
@@ -58,7 +58,6 @@ if (knitr::is_html_output()) {
<!-- Sample block for the LaTeX output -->
```{r echo=FALSE, results='asis'}
if (knitr::is_latex_output()) {
- # Your code here
# By default, it outputs nothing.
# An empty code block would return the string 'NULL' to LaTeX, which would then be printed.
cat('')
diff --git a/structure/book/pt-br/00-preamble.md b/structure/book/pt-br/00-preamble.md
index b1a24e5..367686d 100644
--- a/structure/book/pt-br/00-preamble.md
+++ b/structure/book/pt-br/00-preamble.md
@@ -58,6 +58,8 @@ if (knitr::is_html_output()) {
<!-- Sample block for the LaTeX output -->
```{r echo=FALSE, results='asis'}
if (knitr::is_latex_output()) {
- # Your code here
+ # By default, it outputs nothing.
+ # An empty code block would return the string 'NULL' to LaTeX, which would then be printed.
+ cat('')
}
```