Nothing
Code
new_ornament(c("abc", "de"))
Output
<pillar_ornament>
abc
de
Code
new_ornament(c("abc", "de"), align = "right")
Output
<pillar_ornament>
abc
de
Code
new_ornament(c("abc", "de"), width = 5, align = "right")
Output
<pillar_ornament>
abc
de
Code
format(new_ornament(c("abc", "de")))
Output
[1] "abc" "de "
Code
format(new_ornament(c("abc", "de")), width = 5)
Output
[1] "abc " "de "
Code
as_glue(c("abc", "de"))
Output
abc
de
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.