From 8059129fc695b0f033558c5178dfb3e1ce56334d Mon Sep 17 00:00:00 2001 From: wilsonfreitas Date: Mon, 24 Jul 2023 05:53:31 -0300 Subject: [PATCH] Added URL to projects table --- docs/index.html | 2 +- docs/projects.html | 4 ++-- projects.qmd | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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)) ```