rstudio/learnr

Favicons

Open

#245 geöffnet am 26. Juni 2019

Auf GitHub ansehen
 (1 Kommentar) (0 Reaktionen) (0 zugewiesene Personen)R (240 Forks)github user discovery
help wantedpriority: lowtype: bug

Repository-Metriken

Stars
 (734 Stars)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

Would it be possible to include a custom favicon for learnr through the www/favicon.ico directory, such as for a shiny application?

Of note: The standard "header includes" pattern works for regular Rmd and runtime: shiny but not for runtime: shiny_prerendered (documents published to an RStudio Connect server)

  • Successful:
---
title: "Shiny Runtime Favicon Test"
output: 
  html_document:
    includes:
      in_header: "favicon.html"
runtime: shiny
---
  • Unsuccessful:
---
title: "Learnr Favicon Test"
output: 
  learnr::tutorial:
    includes:
      in_header: "favicon.html"
runtime: shiny_prerendered
---

Contributor Guide