美文网首页
在 RStudio Server 中使用 Cascadia C

在 RStudio Server 中使用 Cascadia C

作者: 王诗翔 | 来源:发表于2019-11-01 17:51 被阅读0次

前面一篇文章《使用 Cascadia Code 字体》介绍了如何在 RStudio 和 VS Code 中使用 Cascadia Code 字体,这里简单介绍在如何为 RStudio Server 设置。

因为对前端都不太懂,谷歌了相关的问题,记录下大致步骤:

  1. 安装字体,请看前一篇文章

  2. 给浏览器安装支持 Javascript 和 CSS 拓展的插件,如谷歌浏览器我使用的是 User JavaScript and CSS

  1. 登录 RStudio Server 并点击拓展插件,会弹出编辑窗口,将下面的代码填进去
(function () {
  var style = `
pre, .ace_text-layer, .xterm-rows, tr[data-entry-id], td[__gwt_cell] {
  font-family: "Cascadia Code" !important;
}
  `;
  var styleNode = document.createElement("style");
  styleNode.appendChild(document.createTextNode(style));
  document.body.appendChild(styleNode);
})();

如图所示:

刷新一下 RStudio Server 页面,搞定收工。

相关文章

网友评论

      本文标题:在 RStudio Server 中使用 Cascadia C

      本文链接:https://www.haomeiwen.com/subject/holqbctx.html