我有一个knitr程序,可在浏览器页面中呈现为html。 我想在打开输出的浏览器选项卡中放置一个favicon .png图像。
我已经看到了闪亮但不是独立的针织衫的答案
答案 0 :(得分:3)
要获取收藏夹图标,必须在呈现的文档的HTML
元素中插入以下<head>
元素:
<link rel="shortcut icon" href="link_to_your_favicon.png">
有很多方法可以实现这一目标。
我建议使用includes
选项。
例如,将以下行保存在名为favicon.html
的文件中:
<link rel="shortcut icon" href="https://www.r-project.org/favicon-32x32.png">
如果呈现以下Rmd
文档,则将获得带有R项目的收藏图标的HTML
文件:
---
title: "Favicon"
output:
html_document:
includes:
in_header: "favicon.html"
---
A document with a favicon