Skip to contents

Format for converting from R Markdown to another tiddler markdown

Usage

tiddler_document(
  host = NULL,
  path = NULL,
  tags = NULL,
  fields = NULL,
  use_bookdown = FALSE,
  overwrite = FALSE,
  ...
)

Arguments

host

the host of tiddlywiki web server

path

The folder of tiddlywiki. Temp solution as no PUT file api in tiddlywiki WebServer.

tags

tiddler tags

fields

a named vector for tiddler fields

use_bookdown

logical. Use bookdown to generate markdown file.

overwrite

whether to overwrite the existing tiddler.

...

Other argument pass to md_document

Value

R Markdown output format to pass to render()

Examples

if (FALSE) {
library(rmarkdown)
render("input.Rmd")
}