如何在R中的Knitr html浏览器选项卡输出中添加收藏夹图标?

时间:2018-07-18 14:18:46

标签: html r r-markdown knitr

我有一个knitr程序,可在浏览器页面中呈现为html。 我想在打开输出的浏览器选项卡中放置一个favicon .png图像。

我已经看到了闪亮但不是独立的针织衫的答案

Favicon in Shiny

1 个答案:

答案 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