我正在尝试为R Markdown文件编写一个Jekyll转换器。我创建了RMarkdownConverter.rb
并将其放在我的_plugins
目录中。我已经验证其他插件正在运行,但这个不是。我也没有看到任何错误消息,包括我自己放置的消息。似乎没有使用它。但是,Jekyll正在为我的.Rmd
文件生成一个HTML文件,但只是将R chuck作为代码查询处理。任何帮助或想法将不胜感激。
RMarkdownConverter.rb
档案:
module Jekyll
class RMarkdownConverter < Converter
safe true
priority :low
def setup
STDERR.puts "Setting up R Markdown..."
return if @setup
require 'rinruby'
@setup = true
rescue
STDERR.puts 'do `gem install rinruby`'
raise FatalException.new("Missing dependency: rinruby")
end
def matches(ext)
ext =~ /Rmd/i
end
def output_ext(ext)
'.html'
end
def convert(content)
setup
STDERR.puts "Using R Markdown..."
R.eval "require(knitr)"
R.eval "render_markdown(strict=TRUE)"
R.assign "content", content
STDERR.puts content
R.eval "out <- knit(text=content)"
R.eval "print(out)"
end
end
end
我的第一个R Markdown帖子的内容:
---
layout: post
title: Using (R) Markdown, Jekyll, and Github for Blogging
published: true
tags: R R-Bloggers Jekyll github
type: post
status: publish
---
First, we need to install [RinRuby](https://sites.google.com/a/ddahl.org/rinruby-users/) to call R from Ruby. In the terminal, execute:
gem install rinruby
First R chuck:
```{r}
2 + 2
```
答案 0 :(得分:4)
尝试使用以下
替换最后几行R.assign "content", content
R.eval "knitr::render_markdown(strict = TRUE)"
R.pull "(knitr::knit2html(text = content, fragment.only = TRUE))"
我认为您需要R.pull
将R输出的内容复制到Ruby。此外,我建议直接从Rmd转换为HTML。我已经成功地使用了这个策略来处理Ruhoh,这是另一个基于ruby的博客平台。
更新。这很奇怪,但使用扩展名rmd似乎与md冲突。我随机改为ram
,jekyll似乎正确地把它拿起来。我不知道为什么。