Rstudio Addin - create boxed title in an Rscript
# install.packages("devtools")
devtools::install_github("ThinkRstat/nicetitle")
# write a sentense, select it an go in Addins > Nice Title
# Part One
1+1
plot(iris)
# Part Two
lm(1~1)
will be transformed as :
############################################################
# #
# Part One #
# #
############################################################
1+1
plot(iris)
############################################################
# #
# Part Two #
# #
############################################################
lm(1~1)