在 R-markdown 中评估存储在 R 对象中的 html 脚本
Evaluate html script stored in R object in R-markdown
在 Rmarkdown
中,我如何 implement/evaluate 一些 HTML
代码存储在 R
字符对象中?
如果我明确地将代码粘贴为纯文本,它会按预期工作,例如<details><summary>Show/hide.</summary>SomeText</details>
.
但是,我需要从 R 对象对其进行评估;例如如何计算 Text
对象的内容:Text <- '<details><summary>Show/hide.</summary>SomeText</details>'
?
下面是一个代表。
谢谢,艾哈迈德
---
title: "Literature notes"
output:
html_document:
#code_folding: hide
---
<details><summary>Show/hide.</summary>SomeText</details> # This works
```{r, eval=TRUE, echo=F}
Text <- '<details><summary>Show/hide.</summary>SomeText</details>'
Text
## how to do the same using info stored in 'Text' object
```
您可以在代码块中使用results='asis'
:
---
title: "Literature notes"
output:
html_document:
#code_folding: hide
---
```{r, eval=TRUE, echo=F, results='asis'}
Text <- '<details><summary>Show/hide.</summary>SomeText</details>'
cat(Text)
``
在 Rmarkdown
中,我如何 implement/evaluate 一些 HTML
代码存储在 R
字符对象中?
如果我明确地将代码粘贴为纯文本,它会按预期工作,例如<details><summary>Show/hide.</summary>SomeText</details>
.
但是,我需要从 R 对象对其进行评估;例如如何计算 Text
对象的内容:Text <- '<details><summary>Show/hide.</summary>SomeText</details>'
?
下面是一个代表。
谢谢,艾哈迈德
---
title: "Literature notes"
output:
html_document:
#code_folding: hide
---
<details><summary>Show/hide.</summary>SomeText</details> # This works
```{r, eval=TRUE, echo=F}
Text <- '<details><summary>Show/hide.</summary>SomeText</details>'
Text
## how to do the same using info stored in 'Text' object
```
您可以在代码块中使用results='asis'
:
---
title: "Literature notes"
output:
html_document:
#code_folding: hide
---
```{r, eval=TRUE, echo=F, results='asis'}
Text <- '<details><summary>Show/hide.</summary>SomeText</details>'
cat(Text)
``