Styles a character vector. Each element of the character vector corresponds to one line of code.
style_text( text, ..., style = tidyverse_style, transformers = style(...), include_roxygen_examples = TRUE, base_indention = 0 )
text | A character vector with text to style. |
---|---|
... | Arguments passed on to the |
style | A function that creates a style guide to use, by default
|
transformers | A set of transformer functions. This argument is most
conveniently constructed via the |
include_roxygen_examples | Whether or not to style code in roxygen examples. |
base_indention | Integer scalar indicating by how many spaces the whole
output text should be indented. Note that this is not the same as splitting
by line and add a |
Other stylers:
style_dir()
,
style_file()
,
style_pkg()
,
styler_addins
style_text("call( 1)")#> call(1)style_text("1 + 1", strict = FALSE)#> 1 + 1style_text("a%>%b", scope = "spaces")#> a %>% bstyle_text("a%>%b; a", scope = "line_breaks")#> a %>% b; astyle_text("a%>%b; a", scope = "tokens")#> a %>% b() #> a# the following is identical but the former is more convenient: style_text("a<-3++1", style = tidyverse_style, strict = TRUE)#> a <- 3 + +1#> a <- 3 + +1