diff --git a/docs/index.html b/docs/index.html index ca7379c..5d791be 100644 --- a/docs/index.html +++ b/docs/index.html @@ -173,7 +173,7 @@ ul.task-list li input[type="checkbox"] {
Modified
-

July 23, 2023

+

July 24, 2023

diff --git a/docs/projects.html b/docs/projects.html index 1b6fe6a..da24d56 100644 --- a/docs/projects.html +++ b/docs/projects.html @@ -138,8 +138,8 @@ ul.task-list li input[type="checkbox"] {
-
- +
+
diff --git a/projects.qmd b/projects.qmd index 8f0c85d..f147874 100644 --- a/projects.qmd +++ b/projects.qmd @@ -17,8 +17,8 @@ library(tidyverse) df <- readr::read_csv("projects.csv") dt <- df |> filter(!is.na(last_commit)) |> - # mutate(project=paste0("", project, "")) |> + mutate(project=paste0("", project, "")) |> 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)) ```