mm2dir: Generate hierarchical directories according to a FreeMind...

Description Usage Arguments Value Examples

View source: R/wrapper.R

Description

Generate hierarchical directories according to a FreeMind mind map

Usage

1
mm2dir(from = NA, dir_to = NA, dir_quiet = FALSE)

Arguments

from

Character. The source text of the (R) Markdown syntax text, the R code, the FreeMind mind map code, or the path to the directory.

dir_to

Character. The path of the output directory.

dir_quiet

Logical. Whether to display the results of generated directories.

Value

Directory generated.

Examples

1
2
3
4
5
6
7
8
input <- system.file("examples/mindr-mm.mm", package = "mindr")
input_txt <- readLines(input, encoding = "UTF-8")
output <- file.path(tempdir(), "mindr")
mm2dir(input_txt, output)
message("Input:  ", input, "\nOutput: ", output)
# file.show(input) # Open the input file system2('open', output) # Open the
# output dir in explorer.  unlink(output, recursive = TRUE) # remove the output
# file

pzhaonet/mindr documentation built on Nov. 23, 2021, 7:24 p.m.