We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
URL
1 parent e84f91a commit 2c0eb54Copy full SHA for 2c0eb54
site/_footer.Rmd
@@ -5,8 +5,8 @@ get_authors = function() {
5
a = Filter(function(x) 'aut' %in% x$role, eval(xfun::parse_only(a)))
6
a = unlist(lapply(a, function(x) {
7
name = paste(x$given, x$family)
8
- link = x$comment[['URL']]
9
- if (length(link) != 1 || is.na(link)) return(name)
+ link = as.list(x$comment)[['URL']]
+ if (length(link) != 1) return(name)
10
sprintf('[%s](%s)', name, link)
11
}))
12
xfun::join_words(a)
0 commit comments