Bookdown 文档未正确呈现输出

Bookdown Document Not Rendering Outputs Correctly

我有一个 bookdown 文档,可以在我的本地机器上正常显示,但是当我 运行 作为使用 GitHub 操作的自动化过程时,各个代码块的输出显示全部混乱向上:

这是本书的 GitHub 存储库:https://github.com/ries9112/cryptocurrencyresearch-org

这里是自动 运行 到 GitHub 操作的地方 运行ning:https://github.com/ries9112/cryptocurrencyresearch-org/actions

为了帮助解决问题,我创建了一个单独的存储库作为一个更简单的示例,我 运行 正在处理完全相同的问题。这是更简单示例的存储库:https://github.com/ries9112/bookdown-test

我部署了那个更简单的测试的结果,你可以在这里找到它们:https://brave-leakey-37b898.netlify.app/intro.html#here-adding-new-test

本地文档格式完全没问题,所以看起来我可能还需要安装其他东西,但我目前正在安装 pandoc 和 tinytex,我不知道还缺少什么。这是定义 GitHub 操作的 YAML 文件:

jobs:
  build:
    runs-on: macOS-10.15
    steps:
      - uses: actions/checkout@v2
      - uses: r-lib/actions/setup-r@v1
      - name: Install pandoc and pandoc citeproc
        run: |
          brew install pandoc
          brew install pandoc-citeproc
      - name: Install Packages
        run: |-
          Rscript -e "install.packages(c('pins','bookdown','tidyverse','DT'))"
      - name: Refresh book
        run: |-
          Rscript -e "bookdown::render_book('index.Rmd', 'bookdown::gitbook')"

对这些安装步骤中可能遗漏的任何东西有什么想法才能正确呈现吗?我也试过 Ubuntu 和 Windows 并且 运行 遇到了同样的问题。

我也尝试了这些步骤来安装 pandoc 和 tinytex,运行 遇到了同样的问题:

      - uses: r-lib/actions/setup-pandoc@v1
      - uses: r-lib/actions/setup-tinytex@v1

非常感谢任何有关如何解决此问题的想法!

Also posted to RStudio Community 如果找到答案,将更新两者。

我认为您需要停用 tidyverse 使用的 crayon 包启用的着色。

默认情况下,当您使用 setup-r 时,它会在 Github 操作上激活 https://github.com/r-lib/actions/blob/9598b8eeb6d88de7d76d580d84443542bbfdffce/setup-r/action.yml#L14-L16

因此您需要将其更改为 FALSE

      - uses: r-lib/actions/setup-r@v1
        with:
          crayon.enabled: 'FALSE'

在你的动作 yaml 文件中。

您也可以在 bookdown 项目中将其作为一个选项停用

options(crayon.enabled = FALSE)

您必须在 Github 操作中执行此操作,因为在 GHA 中使用蜡笔不会自动禁用。不知道为什么