write_md() creates an Rmd or Qmd file from an EML file.
Value
Doesn't return anything; called for the side-effect of writing the specified markdown file to disk.
Details
Similar to read_md(), write_md() is considerably less generic than most
write_ functions. If x is an xml_document this should convert seamlessly;
but lists or tibbles that have been manually formatted require care.
Internally, write_md() calls lightparser::combine_tbl_to_file.
Examples
source_file <- system.file("extdata",
"bionet_metadata.xml",
package = "delma")
df <- read_eml(source_file)
write_md(df, "example.Rmd")
