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
+1 -1
View File
@@ -173,7 +173,7 @@ ul.task-list li input[type="checkbox"] {
<div>
<div class="quarto-title-meta-heading">Modified</div>
<div class="quarto-title-meta-contents">
<p class="date-modified">July 23, 2023</p>
<p class="date-modified">July 24, 2023</p>
</div>
</div>
+2 -2
View File
File diff suppressed because one or more lines are too long
+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))
```