You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
included a minimal, self-contained, and reproducible example?
pasted the output from xfun::session_info('rmarkdown') in your issue?
upgraded all your packages to their latest versions (including your versions of R, the RStudio IDE, and relevant R packages)?
installed and tested your bug with the development version of the rmarkdown package using remotes::install_github("rstudio/rmarkdown") ?
I have followed the reprex from the previously reported #1991 on a similar but resolved issue.
I am trying to include a bluesky icon on my distill website and cannot get it to show. I am posting a reprex in rmarkdown only.
Please let me know if I have missed any updates that would resolve this issue.
Reprex
path <- tempfile()
dir.create(path)
index <- file.path(path, "index.Rmd")
file.create(index)
config <- list(
navbar = list(
left = list(
list(
text = "Bluesky",
icon = "fa-bluesky",
href = "index.html"
),
list(
text = "Bluesky",
icon = "fa fa-bluesky",
href = "index.html"
),
list(
text = "Bluesky",
icon = "fas fa-bluesky",
href = "index.html"
),
list(
text = "Bluesky",
icon = "fab fa-bluesky",
href = "index.html"
),
list(
text = "GitHub",
icon = "fa-github",
href = "index.html"
),
list(
text = "GitHub",
icon = "fa fa-github",
href = "index.html"
),
list(
text = "GitHub",
icon = "fab fa-github",
href = "index.html"
)
)
),
output = "html_document"
)
site <- file.path(path, "_site.yml")
yaml::write_yaml(config, site)
html <- rmarkdown::render_site(index)
html <- file.path(path, html)
browseURL(html)
Result:
Session info
I tried this on both rmarkdown 2.29 and the dev version.
thank you so much @cderv! i apologize for not taking the time to track down that missing link. everything worked great with the dev version of {fontawesome}. <3
Checklist
When filing a bug report, please check the boxes below to confirm that you have provided us with the information we need. Have you:
formatted your issue so it is easier for us to read?
included a minimal, self-contained, and reproducible example?
pasted the output from
xfun::session_info('rmarkdown')
in your issue?upgraded all your packages to their latest versions (including your versions of R, the RStudio IDE, and relevant R packages)?
installed and tested your bug with the development version of the rmarkdown package using
remotes::install_github("rstudio/rmarkdown")
?I have followed the reprex from the previously reported #1991 on a similar but resolved issue.
I am trying to include a bluesky icon on my distill website and cannot get it to show. I am posting a reprex in rmarkdown only.
Please let me know if I have missed any updates that would resolve this issue.
Reprex
Result:
Session info
I tried this on both rmarkdown 2.29 and the dev version.
Thank you very much for any assistance! <3
The text was updated successfully, but these errors were encountered: