-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathas_eml_xml.R
52 lines (48 loc) · 1.24 KB
/
as_eml_xml.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#' Convert metadata to an `xml_document`
#'
#' Takes a `character` vector, tibble, or `list` and converts it to an
#' `xml_document`, as defined by the `xml2` package. When converting from
#' a list, this is simply a wrapper for `xml2::as_xml_document()`
#' @order 1
#' @param x Object to be converted
#' @param ... Other arguments, currently ignored
#' @name as_eml_xml
#' @returns An `xml_document` with the specified nodes and attributes.
#' @examples \dontrun{
#' use_metadata("example.Rmd")
#' df <- read_md("example.Rmd")
#' as_eml_xml(df)
#' }
#' @export
as_eml_xml <- function(x, ...){
UseMethod("as_eml_xml")
}
#' @rdname as_eml_xml
#' @order 2
#' @exportS3Method delma::as_eml_xml
as_eml_xml.tbl_lp <- function(x, ...){
x |>
parse_lp_to_tibble() |>
parse_tibble_to_list() |>
xml2::as_xml_document()
}
#' @rdname as_eml_xml
#' @order 3
#' @exportS3Method delma::as_eml_xml
as_eml_xml.tbl_df <- function(x, ...){
x |>
parse_tibble_to_list() |>
xml2::as_xml_document()
}
#' @rdname as_eml_xml
#' @order 4
#' @exportS3Method delma::as_eml_xml
as_eml_xml.list <- function(x, ...){
xml2::as_xml_document(x)
}
#' @rdname as_eml_xml
#' @order 5
#' @exportS3Method delma::as_eml_xml
as_eml_xml.xml_document <- function(x, ...){
x
}