If-else statement cannot be styled correctly: ``` r library(styler) cat(style_text("if (x) { 1 } else if (x) {22}"), sep = "\n") #> if (x) { #> 1 #> } else if (x) { #> 22 #> } ```