mirror of
https://github.com/wilsonfreitas/awesome-quant.git
synced 2026-08-21 15:58:07 +00:00
Added URL to projects table
This commit is contained in:
+1
-1
@@ -173,7 +173,7 @@ ul.task-list li input[type="checkbox"] {
|
|||||||
<div>
|
<div>
|
||||||
<div class="quarto-title-meta-heading">Modified</div>
|
<div class="quarto-title-meta-heading">Modified</div>
|
||||||
<div class="quarto-title-meta-contents">
|
<div class="quarto-title-meta-contents">
|
||||||
<p class="date-modified">July 23, 2023</p>
|
<p class="date-modified">July 24, 2023</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||
+2
-2
File diff suppressed because one or more lines are too long
+2
-2
@@ -17,8 +17,8 @@ library(tidyverse)
|
|||||||
df <- readr::read_csv("projects.csv")
|
df <- readr::read_csv("projects.csv")
|
||||||
dt <- df |>
|
dt <- df |>
|
||||||
filter(!is.na(last_commit)) |>
|
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) |>
|
select(project, section, last_commit) |>
|
||||||
arrange(desc(last_commit), section)
|
arrange(desc(last_commit), section)
|
||||||
htmltools::tagList(DT::datatable(dt, list(pageLength = 50)))
|
htmltools::tagList(DT::datatable(dt, list(pageLength = 50), escape = FALSE))
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user