Skip to contents

write_eml() writes a tibble, list or xml_document to an EML file. Note that EML files always have the file extension .xml.

Usage

write_eml(x, file)

Arguments

x

Object of any class handled by delma; i.e. tbl_df, list or xml_document.

file

Filename to write to

Value

Desn't return anything; called for the side-effect of writing the specified EML file to disk

Examples

if (FALSE) { # \dontrun{
use_metadata("example.Rmd") 
df <- read_md("example.Rmd")
write_eml(df, "example.xml")
} # }