将R markdown文件发布为博客文章

时间:2013-06-12 03:12:32

标签: wordpress r github markdown rstudio

我想发布一个这样的基本博客文章: (Example blog post)使用我的R降价文件。

但我想在Wordpress(而非wordpress.com)中发布它。

  • 最有希望的解决方案似乎是Yihui's function。我试过了 那但是有很多错误并且不再尝试。我正在使用Windows,似乎Yihui的knit2wp功能在Linux上运行稳定。 (我从其页面中的一条评论中扣除了这一点)
  • 以下帖子也没有帮助:thisthis
  • 我尝试在github中发布我的降价,如(this) 在Jerom Anglim's blog post中提到(BTW上非常翔实的博客文章)。无法弄清楚如何将github文件嵌入到Wordpess中。
  • 我考虑将我的整个博客移至Jekyll one very good example,但它 改变整个博客结构似乎非常令人生畏。

这些解决方案都不适合我。我放弃。复制和粘贴代码和格式是非常低效的。我无法正确对齐我的输出。
还有其他方法我没有偶然发现并可能解决(或缓解)我的问题吗? 提前感谢任何回复..

1 个答案:

答案 0 :(得分:0)

您是否尝试过“Pretty R syntax highlighter”(http://www.inside-r.org/pretty-r/tool)?它可能是一个很好的临时修复,直到你得到其他工作。

此代码:

y <- 1:10
plot(y)

变成了这个:

`<div style="overflow:auto;"><div class="geshifilter"><pre class="r geshifilter-R" style="font-family:monospace;">y <span style="">&lt;-</span> <span style="color: #cc66cc;">1</span><span style="">:</span><span style="color: #cc66cc;">10</span>
<a href="http://inside-r.org/r-doc/graphics/plot"><span style="color: #003399; font-weight: bold;">plot</span></a><span style="color: #009900;">&#40;</span>y<span style="color: #009900;">&#41;</span></pre></div></div><p><a href="http://www.inside-r.org/pretty-r" title="Created by Pretty R at inside-R.org">Created by Pretty R at inside-R.org</a></p>`

,当嵌入你的html中时,显示如下:

y&lt; - 1:10

plot(y)

Created by Pretty R at inside-R.org