- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 pkgdown 建立一个网站所以我跑了pkgdown::build_site()
.
这会引发以下错误:
Building article 'index.html'
Error: pandoc document conversion failed with error 2
output:
rmarkdown::html_vignette:
smart: false
toc: true
output: rmarkdown::html_vignette
--smart/-S has been removed. Use +smart or -smart extension instead. For example: pandoc -f markdown+smart -t markdown-smart. Try pandoc.exe --help for more information. Error: pandoc document conversion failed with error 2 In addition: Warning message: running command '"C:/PROGRA~2/Pandoc/pandoc" +RTS -K512m -RTS Introduction.utf8.md --to html --from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash --output pandoc23e071f76af6.html --smart --email-obfuscation none --self-contained --standalone --section-divs --template "C:\Users\E\Documents\R\win-library\3.4\rmarkdown\rmd\h\default.html" --highlight-style pygments --css "C:\Users\E\Documents\R\win-library\3.4\rmarkdown\rmarkdown\templates\html_vignette\resources\vignette.css" --mathjax --variable "mathjax-url:https://mathjax.rstudio.com/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"' had status 2 Execution halted
output:
html_document:
smart: false
build_site()
时我仍然遇到相同的 pandoc 错误.
sessionInfo()
返回:
R version 3.4.1 (2017-06-30) Platform: x86_64-w64-mingw32/x64 (64-bit) Running under: Windows 7 x64 (build 7601) Service Pack 1
Matrix products: default
locale:
LC_COLLATE=English_United Kingdom.1252 LC_CTYPE=English_United Kingdom.1252 LC_MONETARY=English_United Kingdom.1252 LC_NUMERIC=C
LC_TIME=English_United Kingdom.1252attached base packages: stats graphics grDevices utils
datasets methods baseother attached packages: pkgdown_0.1.0.9000 devtools_1.13.2
loaded via a namespace (and not attached): MASS_7.3-47
compiler_3.4.1 magrittr_1.5 R6_2.2.2 tools_3.4.1
withr_1.0.2 roxygen2_6.0.1 Rcpp_0.12.12 memoise_1.1.0 xml2_1.1.1 stringi_1.1.5 stringr_1.2.0 digest_0.6.12
commonmark_1.2 rlang_0.1.1.9000
sessionInfo()
的输出:
R version 3.3.3 (2017-03-06) Platform: x86_64-pc-linux-gnu (64-bit) Running under: Ubuntu 16.04.2 LTS
locale:
LC_CTYPE=en_GB.UTF-8 LC_NUMERIC=C
LC_TIME=en_GB.UTF-8 LC_COLLATE=en_GB.UTF-8
LC_MONETARY=en_GB.UTF-8 LC_MESSAGES=en_GB.UTF-8
LC_PAPER=en_GB.UTF-8 LC_NAME=C LC_ADDRESS=C
LC_TELEPHONE=C LC_MEASUREMENT=en_GB.UTF-8 LC_IDENTIFICATION=Cattached base packages: stats graphics grDevices utils
datasets methods baseother attached packages: pkgdown_0.1.0.9000 devtools_1.13.1
loaded via a namespace (and not attached): MASS_7.3-45
magrittr_1.5 R6_2.2.2 tools_3.3.3 withr_2.0.0
roxygen2_6.0.1 Rcpp_0.12.12 memoise_1.1.0 xml2_1.1.1
stringi_1.1.2 stringr_1.2.0 digest_0.6.12 commonmark_1.2 rlang_0.1.1
最佳答案
引发警告是因为参数 --smart
在这里使用:... running command '"C:/PROGRA~2/Pandoc/pandoc" ... --smart ... "'
.因为 --smart/-S has been removed
对于 Pandoc 2.0,这是一个问题。因此,删除 --smart
从调用者或命令行来解决这个问题。
在 Pandoc 2+ 中, smart 的用法与任何其他扩展相同。要启用它,请附加 +smart
到 --to
或 --from
争论它,或者可能两者都争论。要禁用,请附加 -smart
.
例如:
--to html+smart
--from markdown+autolink_bare_uris+ascii_identifiers+tex_math_single_backslash-smart
关于r - 错误 : pandoc document conversion failed with error 2 with pkgdown/rmarkdown,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45339538/
pkgdown::build_articles() fails with large chunk sizes rmarkdown::render() works fine a
在使用所有默认选项运行 pkgdown::build_site() 时,我遇到了代码块输出问题。 block 在 html content 中呈现每行代码之间都有多余的空格。例如: ```{r, me
我有一个包含多个引用书目 (MB) 的 R 包的小插图,使用 lua filter 。当我尝试将带有 MB 的小插图转换为 pkgdown 文章时,我收到 .lua 和 .bib 文件的错误,该错误不
我正在尝试在由 pkgdown 生成的我的网站中以深色背景显示代码块。 我一直在寻找一种方法来更改代码块中的语法突出显示,但到目前为止只找到了很少的信息,而且没有任何信息可以让我调整或简单地更改突出显
我无法理解如何在我的 github 页面中实现 docsearch 片段(我正在使用 bootstrap 3 )。 来自 package documentation : Once you have p
到目前为止,我已经创建了 6 个不同的 pkgdown我的 R 包的网站(例如, ggstatsplot 、 kittyR 等)并且他们都没有遇到以下问题。 第一次,运行以下命令 pkgdown::b
我正在使用 pkgdown为 R 包(称为 RTCGA)生成优雅和静态的手册页。当我运行代码以生成静态文档作为网站时,我使用以下命令 > pkgdown::build_site() Initialis
出于某种原因pkgdown无法解析我的包中的 .Rd 文件之一。当我向 roxygen2 添加示例时,我发现它失败了使用 @examples 的文档标签或 @example inst/example/
我正在为我的 R 包构建一个 pkgdown 网站。一切都运行良好,但我还没有弄清楚的一个自定义是如何在目录 (TOC) 中对齐文章标题和副标题。 在下图中, 左边:文章来 self 的ggstats
我有一个 pkgdown在该站点中,我将引用 .yml 中的许多功能按类别分组文件。我想知道是否有一种方法可以将所有我没有明确分类的功能归入它们自己的类别。我唯一的想法是使用 matches功能如下:
我正在尝试使用 pkgdown 建立一个网站所以我跑了pkgdown::build_site() . 这会引发以下错误: Building article 'index.html' Error: pa
我是一名优秀的程序员,十分优秀!