Skip to content

Commit

Permalink
remove empty paragraphs in publications
Browse files Browse the repository at this point in the history
  • Loading branch information
ahasverus committed Dec 14, 2023
1 parent 62ab09f commit d479aab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions content/publications.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,9 @@ The **CESAB's Zotero Library** is available [here](https://www.zotero.org/groups
biblio <- readLines(here::here("content", "list-publications_by_year.html"))
biblio <- gsub("URL:", "<br>URL:", biblio)
biblio <- gsub("DOI:", "<br>DOI:", biblio)
pos <- which(biblio == "<p>&nbsp;</p>")
if (length(pos) > 0) biblio <- biblio[-pos]
cat(paste0(biblio, collapse = "\n"))
```

0 comments on commit d479aab

Please sign in to comment.