作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我找到了关于如何修改Rstudio中使用markdown和knitr创建的HTML报告的CSS格式的出色教程。该帖子可以在here中找到。
我希望以此概念为基础,并通过使用相同的CSS来模仿here页面的布局。我试图简单地复制/粘贴/合并在查看页面源代码时找到的两个css文件。
您可以提供的任何帮助将不胜感激!这是我的第一次尝试,正在做任何CSS。
最佳答案
这是RStudio提供的方法:http://www.rstudio.com/ide/docs/authoring/markdown_custom_rendering
options(rstudio.markdownToHTML =
function(inputFile, outputFile) {
require(markdown)
markdownToHTML(inputFile, outputFile, stylesheet='custom.css')
}
)
tmp <- readLines("your.html")
tmp <- tmp[-c(1:50)] # or however many lines it is before the css ends
write(tmp,"your.html")
system("pandoc -s -S your.html -c your.css -o output.html")
关于r - R中带有编织和减价的自定义CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13095772/
我是一名优秀的程序员,十分优秀!