gpt4 book ai didi

r - 避免使用Knitr,Markdown生成自动超链接

转载 作者:行者123 更新时间:2023-12-04 08:07:19 25 4
gpt4 key购买 nike

将.Rmd编织为.html时,knitr自动生成链接。很多时候这很有用,但现在不是我想要的。

假设您有以下.Rmd文件:

---
title: "Doc title"
output: html_document
---

I don't want this@to-be-a-link.com, but it comes out that way.

If you wrap it in an R expression `r "this@is-still-a-link.com"`.

Is there some kind of CSS trick I can avail myself of if I wanted <style='nolink'>www.something.com</style> not to be a link?

像这样编织:
library(knitr)
knit2html('that_file.Rmd', 'that_file.html')

导致所有这些东西都是链接。

是否有一种简单的方法通常可以保留自动链接的生成,但是在特定的行中有选择地禁用它?感谢您的任何想法。

编辑:我想我应该在接受之前实际上已经尝试过以下解决方案。这在.Rmd
I don't want this <!-- breaklink -->@to-be-a-link.com

...实际上并没有解析为HTML注释,因为-变成了破折号(由knitr?pandoc?),然后我得到:

最佳答案

我看到的两个选项是(1)使用裸露的反引号,或(2)通过使用空的HTML注释“断开”链接。

例子:

---
title: "Doc title"
output: html_document
---

I don't want this<!-- -->@to-be-a-link.com, but it comes out that way.

If you wrap it in an R expression `this@is-still-a-link.com`.

Is there some kind of CSS trick I can avail myself of if I wanted
<style='nolink'>http<!-- -->://www.something.com</style> not to
be a link?

成为:

关于r - 避免使用Knitr,Markdown生成自动超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27773226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com