发布到rpubs现有的html文件

时间:2015-07-23 15:15:52

标签: html r publish knitr

我正在尝试使用knithtml向rpub发布使用rmd生成的html文件。然而,编织需要太长时间才能运行,我不想再次重新运行整个编织过程只是为了对html文档的外观进行微小的改动。

当我关闭html文件并重新打开它时,我似乎无法找到发布按钮。

2 个答案:

答案 0 :(得分:2)

安装包markdown,然后您可以尝试代码:

result <- rpubsUpload(title='Your title',htmlFile='your_html_file_and_path.html',method=getOption('rpubs.upload.method','auto')

成功上传会在result中返回2个值,即网站地址。将continueUrl复制并粘贴到您的浏览器中即可完成上传。

或者你可以使用这个功能:

browseURL(result$continueUrl)

使用默认浏览器直接浏览网页。

请注意,我确信无需使用浏览器即可自动上传,但这是我现在知道的唯一方式。

答案 1 :(得分:0)

  

执行以下命令-首先设置PATH,然后执行其他命令

setwd("C:/Users/MK10181/Desktop")
result <- rpubsUpload(title='SPC',contentFile='Report.html', originalDoc = 'Report.html')

result
$id
[1] "https://api.rpubs.com/api/v1/document/507696/c26dc92b5fe046488a4bfa8c670dab26"

$continueUrl
[1] "http://rpubs.com/publish/claim/507696/dc025c9952da401db86aef1f0f234734"

browseURL(result$continueUrl)
  

此后,您的RPub的帐户页面将在浏览器中打开,然后您将看到您的文档。