c,meta-method | R Documentation |
Concatenate meta elements into a ListOfmeta
Concatenate ListOfmeta elements into a flat ListOfmeta
## S4 method for signature 'meta'
c(x, ..., recursive = TRUE)
## S4 method for signature 'ListOfmeta'
c(x, ..., recursive = TRUE)
x , ... |
|
recursive |
logical, if 'recursive=TRUE', the function recursively
descends through lists and combines their elements into a flat vector.
This method does not support |
a ListOfmeta object containing a flat list of meta elements.
c(meta(content="example", property="dc:title"),
meta(content="Carl", property="dc:creator"))
metalist <- c(meta(content="example", property="dc:title"),
meta(content="Carl", property="dc:creator"))
out <- c(metalist, metalist)
out <- c(metalist, meta(content="a", property="b"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.