├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── minify.R └── pretty_data.R ├── README.Rmd ├── README.md ├── appveyor.yml ├── inst ├── COPYRIGHTS ├── data_examples │ ├── simple.css │ ├── simple.json │ ├── simple.sql │ └── simple.xml ├── js │ └── pretty-data.js └── rstudio │ └── addins.dcf ├── man ├── beautify_dir.Rd ├── beautify_file.Rd ├── beautify_str.Rd ├── minify_file.Rd └── minify_str.Rd └── prettyfile.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2017 2 | COPYRIGHT HOLDER: David Gohel 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/minify.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/R/minify.R -------------------------------------------------------------------------------- /R/pretty_data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/R/pretty_data.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/appveyor.yml -------------------------------------------------------------------------------- /inst/COPYRIGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/COPYRIGHTS -------------------------------------------------------------------------------- /inst/data_examples/simple.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/data_examples/simple.css -------------------------------------------------------------------------------- /inst/data_examples/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/data_examples/simple.json -------------------------------------------------------------------------------- /inst/data_examples/simple.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/data_examples/simple.sql -------------------------------------------------------------------------------- /inst/data_examples/simple.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/data_examples/simple.xml -------------------------------------------------------------------------------- /inst/js/pretty-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/js/pretty-data.js -------------------------------------------------------------------------------- /inst/rstudio/addins.dcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/inst/rstudio/addins.dcf -------------------------------------------------------------------------------- /man/beautify_dir.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/man/beautify_dir.Rd -------------------------------------------------------------------------------- /man/beautify_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/man/beautify_file.Rd -------------------------------------------------------------------------------- /man/beautify_str.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/man/beautify_str.Rd -------------------------------------------------------------------------------- /man/minify_file.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/man/minify_file.Rd -------------------------------------------------------------------------------- /man/minify_str.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/man/minify_str.Rd -------------------------------------------------------------------------------- /prettyfile.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidgohel/prettyfile/HEAD/prettyfile.Rproj --------------------------------------------------------------------------------