From d528188e9932b50ee68cca3e7ec817fe656ea5b6 Mon Sep 17 00:00:00 2001 From: Soumya Ray Date: Fri, 10 Jul 2026 11:44:00 +0800 Subject: [PATCH] Fix missing semicolon in .d-contents nav a CSS rule The rule omits the semicolon after 'text-decoration: none', so the CSS parser reads the value as 'none color: rgba(0, 0, 0, 0.8)', which is invalid and drops both the text-decoration and color declarations for table-of-contents links. --- inst/rmarkdown/templates/distill_article/resources/distill.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inst/rmarkdown/templates/distill_article/resources/distill.html b/inst/rmarkdown/templates/distill_article/resources/distill.html index cd8892e7..c986947f 100644 --- a/inst/rmarkdown/templates/distill_article/resources/distill.html +++ b/inst/rmarkdown/templates/distill_article/resources/distill.html @@ -286,7 +286,7 @@ .d-contents nav a { font-size: 13px; border-bottom: none; - text-decoration: none + text-decoration: none; color: rgba(0, 0, 0, 0.8); }