Updated projects.qmd

Format URL did not work
This commit is contained in:
wilsonfreitas
2023-07-23 17:22:02 -03:00
parent cc2104c310
commit f6e96ab904
4 changed files with 1297 additions and 4 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, escape = FALSE)))
htmltools::tagList(DT::datatable(dt, list(pageLength = 50)))
```