Added URL to projects table

This commit is contained in:
wilsonfreitas
2023-07-24 05:53:31 -03:00
parent f6e96ab904
commit 8059129fc6
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -17,8 +17,8 @@ library(tidyverse)
df <- readr::read_csv("projects.csv")
dt <- df |>
filter(!is.na(last_commit)) |>
# mutate(project=paste0("<a href='", url, "'>", project, "</a>")) |>
mutate(project=paste0("<a href='", url, "'>", project, "</a>")) |>
select(project, section, last_commit) |>
arrange(desc(last_commit), section)
htmltools::tagList(DT::datatable(dt, list(pageLength = 50)))
htmltools::tagList(DT::datatable(dt, list(pageLength = 50), escape = FALSE))
```