From 5b083d21c6e8e4dea54fad65e6e8478163a1cf46 Mon Sep 17 00:00:00 2001
From: Ryan Tablada
Date: Sun, 11 Sep 2016 16:41:42 -0500
Subject: [PATCH 1/2] Add support for Nunjucks using PrettyDiff
---
src/beautifiers/prettydiff.coffee | 1 +
src/languages/index.coffee | 1 +
src/languages/nunjucks.coffee | 28 ++++++++++++++++++++++++++++
3 files changed, 30 insertions(+)
create mode 100644 src/languages/nunjucks.coffee
diff --git a/src/beautifiers/prettydiff.coffee b/src/beautifiers/prettydiff.coffee
index 0e37f03..7dadcab 100644
--- a/src/beautifiers/prettydiff.coffee
+++ b/src/beautifiers/prettydiff.coffee
@@ -48,6 +48,7 @@ module.exports = class PrettyDiff extends Beautifier
EJS: true
HTML: true
Handlebars: true
+ Nunjucks: true
XML: true
SVG: true
Spacebars: true
diff --git a/src/languages/index.coffee b/src/languages/index.coffee
index d3bbee3..f9974f9 100644
--- a/src/languages/index.coffee
+++ b/src/languages/index.coffee
@@ -44,6 +44,7 @@ module.exports = class Languages
"markdown"
'marko'
"mustache"
+ "nunjucks"
"objective-c"
"ocaml"
"pawn"
diff --git a/src/languages/nunjucks.coffee b/src/languages/nunjucks.coffee
new file mode 100644
index 0000000..c62884f
--- /dev/null
+++ b/src/languages/nunjucks.coffee
@@ -0,0 +1,28 @@
+console.log('loading nunjucks')
+
+module.exports = {
+
+ name: "Nunjucks"
+ namespace: "nunjucks"
+ fallback: ['html','mustache']
+
+ ###
+ Supported Grammars
+ ###
+ grammars: [
+ "Nunjucks",
+ "Nunjucks Templates",
+ "HTML (Nunjucks Templates)"
+ ]
+
+ ###
+ Supported extensions
+ ###
+ extensions: [
+ "njk",
+ "nunjucks"
+ ]
+
+ options: []
+
+}
From a7c4ebb508de2f54ee14307badd07cbef382a146 Mon Sep 17 00:00:00 2001
From: Ryan Tablada
Date: Sun, 11 Sep 2016 16:48:16 -0500
Subject: [PATCH 2/2] docs: generate docs after adding nunjucks
---
README.md | 1 +
docs/code/alphabetical_index.html | 75 +++-
docs/code/class/Autopep8.html | 2 +-
docs/code/class/Beautifier.html | 5 +-
docs/code/class/Beautifiers.html | 4 +-
docs/code/class/ClangFormat.html | 2 +-
docs/code/class/CoffeeFmt.html | 2 +-
docs/code/class/CoffeeFormatter.html | 2 +-
docs/code/class/Crystal.html | 2 +-
docs/code/class/Dfmt.html | 2 +-
docs/code/class/ElmFormat.html | 2 +-
docs/code/class/ErlTidy.html | 2 +-
docs/code/class/FortranBeautifier.html | 2 +-
docs/code/class/Gherkin.html | 2 +-
docs/code/class/Gofmt.html | 2 +-
docs/code/class/HTMLBeautifier.html | 2 +-
docs/code/class/JSBeautify.html | 5 +-
docs/code/class/JSCSFixer.html | 2 +-
docs/code/class/LatexBeautify.html | 2 +-
docs/code/class/LoadingView.html | 2 +-
docs/code/class/Lua.html | 2 +-
docs/code/class/MarkoBeautifier.html | 2 +-
docs/code/class/MessageView.html | 2 +-
docs/code/class/OCPIndent.html | 2 +-
docs/code/class/PHPCBF.html | 2 +-
docs/code/class/PHPCSFixer.html | 2 +-
docs/code/class/PerlTidy.html | 2 +-
docs/code/class/PrettyDiff.html | 4 +-
docs/code/class/PugBeautify.html | 2 +-
docs/code/class/PuppetFix.html | 2 +-
docs/code/class/R.html | 204 +++++++++++
docs/code/class/Remark.html | 2 +-
docs/code/class/Rubocop.html | 2 +-
docs/code/class/RubyBeautify.html | 2 +-
docs/code/class/Rustfmt.html | 2 +-
docs/code/class/SassConvert.html | 210 +++++++++++
docs/code/class/Sqlformat.html | 2 +-
docs/code/class/StylishHaskell.html | 2 +-
docs/code/class/TidyMarkdown.html | 2 +-
docs/code/class/TypeScriptFormatter.html | 2 +-
docs/code/class/Uncrustify.html | 2 +-
docs/code/class/VueBeautifier.html | 196 +++++++++++
docs/code/class/Yapf.html | 2 +-
docs/code/class_list.html | 36 ++
docs/code/extra/CHANGELOG.md.html | 4 +-
docs/code/extra/README.md.html | 57 ++-
.../file/src/beautifiers/autopep8.coffee.html | 2 +-
.../src/beautifiers/beautifier.coffee.html | 2 +-
.../src/beautifiers/clang-format.coffee.html | 2 +-
.../src/beautifiers/coffee-fmt.coffee.html | 2 +-
.../beautifiers/coffee-formatter.coffee.html | 2 +-
.../file/src/beautifiers/crystal.coffee.html | 2 +-
.../file/src/beautifiers/csscomb.coffee.html | 2 +-
.../file/src/beautifiers/dfmt.coffee.html | 2 +-
.../src/beautifiers/elm-format.coffee.html | 2 +-
.../file/src/beautifiers/erl_tidy.coffee.html | 2 +-
.../src/beautifiers/formatR/index.coffee.html | 125 +++++++
.../fortran-beautifier/index.coffee.html | 2 +-
.../file/src/beautifiers/gherkin.coffee.html | 2 +-
.../file/src/beautifiers/gofmt.coffee.html | 2 +-
.../beautifiers/htmlbeautifier.coffee.html | 2 +-
.../file/src/beautifiers/index.coffee.html | 2 +-
.../src/beautifiers/js-beautify.coffee.html | 2 +-
.../file/src/beautifiers/jscs.coffee.html | 2 +-
.../beautifiers/latex-beautify.coffee.html | 2 +-
.../lua-beautifier/index.coffee.html | 2 +-
.../beautifiers/marko-beautifier.coffee.html | 2 +-
.../src/beautifiers/ocp-indent.coffee.html | 2 +-
.../file/src/beautifiers/perltidy.coffee.html | 2 +-
.../src/beautifiers/php-cs-fixer.coffee.html | 2 +-
.../file/src/beautifiers/phpcbf.coffee.html | 2 +-
.../src/beautifiers/prettydiff.coffee.html | 2 +-
.../src/beautifiers/pug-beautify.coffee.html | 2 +-
.../src/beautifiers/puppet-fix.coffee.html | 2 +-
.../file/src/beautifiers/remark.coffee.html | 2 +-
.../file/src/beautifiers/rubocop.coffee.html | 2 +-
.../src/beautifiers/ruby-beautify.coffee.html | 2 +-
.../file/src/beautifiers/rustfmt.coffee.html | 2 +-
.../src/beautifiers/sass-convert.coffee.html | 123 +++++++
.../src/beautifiers/sqlformat.coffee.html | 2 +-
.../beautifiers/stylish-haskell.coffee.html | 2 +-
.../src/beautifiers/tidy-markdown.coffee.html | 2 +-
.../typescript-formatter.coffee.html | 2 +-
.../beautifiers/uncrustify/cfg.coffee.html | 2 +-
.../beautifiers/uncrustify/index.coffee.html | 2 +-
.../beautifiers/vue-beautifier.coffee.html | 123 +++++++
.../file/src/beautifiers/yapf.coffee.html | 2 +-
docs/code/file/src/beautify.coffee.html | 2 +-
docs/code/file/src/config.coffee.html | 4 +-
docs/code/file/src/languages/apex.coffee.html | 2 +-
.../file/src/languages/arduino.coffee.html | 2 +-
.../file/src/languages/c-sharp.coffee.html | 2 +-
docs/code/file/src/languages/c.coffee.html | 2 +-
.../src/languages/coffeescript.coffee.html | 2 +-
.../file/src/languages/coldfusion.coffee.html | 2 +-
docs/code/file/src/languages/cpp.coffee.html | 2 +-
.../file/src/languages/crystal.coffee.html | 2 +-
docs/code/file/src/languages/css.coffee.html | 9 +-
docs/code/file/src/languages/csv.coffee.html | 2 +-
docs/code/file/src/languages/d.coffee.html | 2 +-
docs/code/file/src/languages/ejs.coffee.html | 2 +-
docs/code/file/src/languages/elm.coffee.html | 2 +-
docs/code/file/src/languages/erb.coffee.html | 2 +-
.../file/src/languages/erlang.coffee.html | 2 +-
.../file/src/languages/fortran.coffee.html | 4 +-
.../file/src/languages/gherkin.coffee.html | 2 +-
docs/code/file/src/languages/go.coffee.html | 2 +-
.../file/src/languages/handlebars.coffee.html | 2 +-
.../file/src/languages/haskell.coffee.html | 2 +-
docs/code/file/src/languages/html.coffee.html | 4 +-
.../code/file/src/languages/index.coffee.html | 2 +-
docs/code/file/src/languages/jade.coffee.html | 2 +-
docs/code/file/src/languages/java.coffee.html | 2 +-
.../file/src/languages/javascript.coffee.html | 2 +-
docs/code/file/src/languages/json.coffee.html | 2 +-
docs/code/file/src/languages/jsx.coffee.html | 2 +-
.../code/file/src/languages/latex.coffee.html | 2 +-
docs/code/file/src/languages/less.coffee.html | 2 +-
docs/code/file/src/languages/lua.coffee.html | 2 +-
.../file/src/languages/markdown.coffee.html | 2 +-
.../code/file/src/languages/marko.coffee.html | 2 +-
.../file/src/languages/mustache.coffee.html | 2 +-
.../file/src/languages/nunjucks.coffee.html | 139 ++++++++
.../src/languages/objective-c.coffee.html | 2 +-
.../code/file/src/languages/ocaml.coffee.html | 2 +-
docs/code/file/src/languages/pawn.coffee.html | 2 +-
docs/code/file/src/languages/perl.coffee.html | 2 +-
docs/code/file/src/languages/php.coffee.html | 2 +-
.../file/src/languages/puppet.coffee.html | 2 +-
.../file/src/languages/python.coffee.html | 2 +-
docs/code/file/src/languages/r.coffee.html | 172 +++++++++
.../file/src/languages/riotjs.coffee.html | 2 +-
docs/code/file/src/languages/ruby.coffee.html | 2 +-
docs/code/file/src/languages/rust.coffee.html | 2 +-
docs/code/file/src/languages/sass.coffee.html | 6 +-
docs/code/file/src/languages/scss.coffee.html | 2 +-
.../file/src/languages/spacebars.coffee.html | 2 +-
docs/code/file/src/languages/sql.coffee.html | 2 +-
docs/code/file/src/languages/svg.coffee.html | 2 +-
docs/code/file/src/languages/swig.coffee.html | 2 +-
docs/code/file/src/languages/tss.coffee.html | 2 +-
docs/code/file/src/languages/twig.coffee.html | 2 +-
.../file/src/languages/typescript.coffee.html | 2 +-
docs/code/file/src/languages/vala.coffee.html | 2 +-
.../src/languages/visualforce.coffee.html | 2 +-
docs/code/file/src/languages/vue.coffee.html | 139 ++++++++
docs/code/file/src/languages/xml.coffee.html | 6 +-
.../file/src/languages/xtemplate.coffee.html | 2 +-
.../file/src/views/loading-view.coffee.html | 2 +-
.../file/src/views/message-view.coffee.html | 2 +-
docs/code/file_list.html | 56 +++
docs/code/javascript/search.js | 2 +-
docs/code/method_list.html | 328 ++++++++++--------
docs/options.md | 177 ++++++++++
package.json | 5 +-
155 files changed, 2160 insertions(+), 315 deletions(-)
create mode 100644 docs/code/class/R.html
create mode 100644 docs/code/class/SassConvert.html
create mode 100644 docs/code/class/VueBeautifier.html
create mode 100644 docs/code/file/src/beautifiers/formatR/index.coffee.html
create mode 100644 docs/code/file/src/beautifiers/sass-convert.coffee.html
create mode 100644 docs/code/file/src/beautifiers/vue-beautifier.coffee.html
create mode 100644 docs/code/file/src/languages/nunjucks.coffee.html
create mode 100644 docs/code/file/src/languages/r.coffee.html
create mode 100644 docs/code/file/src/languages/vue.coffee.html
diff --git a/README.md b/README.md
index 4c8173f..be98a62 100644
--- a/README.md
+++ b/README.md
@@ -87,6 +87,7 @@ See [all supported options in the documentation at `docs/options.md`](https://g
| Markdown | `GitHub Markdown` |`.markdown`, `.md` | [`Remark`](https://github.com/wooorm/remark), [`Tidy Markdown`](https://github.com/slang800/tidy-markdown) (Default) |
| Marko | `Marko` |`.marko` | [`Marko Beautifier`](https://github.com/marko-js/marko-prettyprint) (Default) |
| Mustache | `HTML (Mustache)` |`.mustache` | [`JS Beautify`](https://github.com/beautify-web/js-beautify) (Default) |
+| Nunjucks | `Nunjucks`, `Nunjucks Templates`, `HTML (Nunjucks Templates)` |`.njk`, `.nunjucks` | [`Pretty Diff`](https://github.com/prettydiff/prettydiff) (Default) |
| Objective-C | `Objective-C`, `Objective-C++` |`.m`, `.mm`, `.h` | [`Uncrustify`](https://github.com/uncrustify/uncrustify) (Default), [`clang-format`](https://clang.llvm.org/docs/ClangFormat.html) |
| OCaml | `OCaml` |`.ml` | [`ocp-indent`](https://www.typerex.org/ocp-indent.html) (Default) |
| Pawn | `Pawn` | | [`Uncrustify`](https://github.com/uncrustify/uncrustify) (Default) |
diff --git a/docs/code/alphabetical_index.html b/docs/code/alphabetical_index.html
index 08f4fe0..ac4af5e 100644
--- a/docs/code/alphabetical_index.html
+++ b/docs/code/alphabetical_index.html
@@ -245,6 +245,11 @@
Variables Summary
@@ -461,7 +464,7 @@ however it is used internally for Atom Beautify when displaying errors.
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Beautifiers.html b/docs/code/class/Beautifiers.html
index 9754815..b0b5252 100644
--- a/docs/code/class/Beautifiers.html
+++ b/docs/code/class/Beautifiers.html
@@ -52,7 +52,7 @@
=
- ['uncrustify', 'autopep8', 'coffee-formatter', 'coffee-fmt', 'clang-format', 'crystal', 'dfmt', 'elm-format', 'htmlbeautifier', 'csscomb', 'gherkin', 'gofmt', 'latex-beautify', 'fortran-beautifier', 'js-beautify', 'jscs', 'lua-beautifier', 'ocp-indent', 'perltidy', 'php-cs-fixer', 'phpcbf', 'prettydiff', 'pug-beautify', 'puppet-fix', 'remark', 'rubocop', 'ruby-beautify', 'rustfmt', 'sqlformat', 'stylish-haskell', 'tidy-markdown', 'typescript-formatter', 'yapf', 'erl_tidy', 'marko-beautifier']
+ ['uncrustify', 'autopep8', 'coffee-formatter', 'coffee-fmt', 'clang-format', 'crystal', 'dfmt', 'elm-format', 'htmlbeautifier', 'csscomb', 'gherkin', 'gofmt', 'latex-beautify', 'fortran-beautifier', 'js-beautify', 'jscs', 'lua-beautifier', 'ocp-indent', 'perltidy', 'php-cs-fixer', 'phpcbf', 'prettydiff', 'pug-beautify', 'puppet-fix', 'remark', 'rubocop', 'ruby-beautify', 'rustfmt', 'sass-convert', 'sqlformat', 'stylish-haskell', 'tidy-markdown', 'typescript-formatter', 'vue-beautifier', 'yapf', 'erl_tidy', 'marko-beautifier', 'formatR']
List of beautifier names
To register a beautifier add its name here
@@ -567,7 +567,7 @@ or in the home directory. Configuration files are named
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/ClangFormat.html b/docs/code/class/ClangFormat.html
index 1a5722a..04bb660 100644
--- a/docs/code/class/ClangFormat.html
+++ b/docs/code/class/ClangFormat.html
@@ -161,7 +161,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/CoffeeFmt.html b/docs/code/class/CoffeeFmt.html
index e0d77c5..1f58001 100644
--- a/docs/code/class/CoffeeFmt.html
+++ b/docs/code/class/CoffeeFmt.html
@@ -147,7 +147,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/CoffeeFormatter.html b/docs/code/class/CoffeeFormatter.html
index 4b00458..ca19d52 100644
--- a/docs/code/class/CoffeeFormatter.html
+++ b/docs/code/class/CoffeeFormatter.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Crystal.html b/docs/code/class/Crystal.html
index 4861b73..8289b2b 100644
--- a/docs/code/class/Crystal.html
+++ b/docs/code/class/Crystal.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Dfmt.html b/docs/code/class/Dfmt.html
index 22004d9..49cee75 100644
--- a/docs/code/class/Dfmt.html
+++ b/docs/code/class/Dfmt.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/ElmFormat.html b/docs/code/class/ElmFormat.html
index c59aa73..e698e1b 100644
--- a/docs/code/class/ElmFormat.html
+++ b/docs/code/class/ElmFormat.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/ErlTidy.html b/docs/code/class/ErlTidy.html
index 942755d..5cc5a8d 100644
--- a/docs/code/class/ErlTidy.html
+++ b/docs/code/class/ErlTidy.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/FortranBeautifier.html b/docs/code/class/FortranBeautifier.html
index 1f2928e..df567f8 100644
--- a/docs/code/class/FortranBeautifier.html
+++ b/docs/code/class/FortranBeautifier.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Gherkin.html b/docs/code/class/Gherkin.html
index 1a6d4e8..a5962d1 100644
--- a/docs/code/class/Gherkin.html
+++ b/docs/code/class/Gherkin.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Gofmt.html b/docs/code/class/Gofmt.html
index 3a714e0..9e06eda 100644
--- a/docs/code/class/Gofmt.html
+++ b/docs/code/class/Gofmt.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/HTMLBeautifier.html b/docs/code/class/HTMLBeautifier.html
index 399f6b6..f90b4f2 100644
--- a/docs/code/class/HTMLBeautifier.html
+++ b/docs/code/class/HTMLBeautifier.html
@@ -136,7 +136,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/JSBeautify.html b/docs/code/class/JSBeautify.html
index 74cd02b..9e2f190 100644
--- a/docs/code/class/JSBeautify.html
+++ b/docs/code/class/JSBeautify.html
@@ -75,7 +75,8 @@
selector_separator_newline: true,
newline_between_rules: true,
preserve_newlines: true,
- wrap_line_length: true
+ wrap_line_length: true,
+ end_with_newline: true
}
}
@@ -147,7 +148,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/JSCSFixer.html b/docs/code/class/JSCSFixer.html
index f86f81c..2dd5ff6 100644
--- a/docs/code/class/JSCSFixer.html
+++ b/docs/code/class/JSCSFixer.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/LatexBeautify.html b/docs/code/class/LatexBeautify.html
index a2cd8fa..529d061 100644
--- a/docs/code/class/LatexBeautify.html
+++ b/docs/code/class/LatexBeautify.html
@@ -193,7 +193,7 @@ So we set up a directory with all the files in place.
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/LoadingView.html b/docs/code/class/LoadingView.html
index c191ebe..4f71691 100644
--- a/docs/code/class/LoadingView.html
+++ b/docs/code/class/LoadingView.html
@@ -121,7 +121,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Lua.html b/docs/code/class/Lua.html
index cd11524..7cb8343 100644
--- a/docs/code/class/Lua.html
+++ b/docs/code/class/Lua.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/MarkoBeautifier.html b/docs/code/class/MarkoBeautifier.html
index cce41e0..040982a 100644
--- a/docs/code/class/MarkoBeautifier.html
+++ b/docs/code/class/MarkoBeautifier.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/MessageView.html b/docs/code/class/MessageView.html
index 8acd513..4869b82 100644
--- a/docs/code/class/MessageView.html
+++ b/docs/code/class/MessageView.html
@@ -230,7 +230,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/OCPIndent.html b/docs/code/class/OCPIndent.html
index e917a14..9703aaf 100644
--- a/docs/code/class/OCPIndent.html
+++ b/docs/code/class/OCPIndent.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/PHPCBF.html b/docs/code/class/PHPCBF.html
index e9cf283..80019bc 100644
--- a/docs/code/class/PHPCBF.html
+++ b/docs/code/class/PHPCBF.html
@@ -145,7 +145,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/PHPCSFixer.html b/docs/code/class/PHPCSFixer.html
index a1e52ca..e2ec1d6 100644
--- a/docs/code/class/PHPCSFixer.html
+++ b/docs/code/class/PHPCSFixer.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/PerlTidy.html b/docs/code/class/PerlTidy.html
index cefbc66..646811e 100644
--- a/docs/code/class/PerlTidy.html
+++ b/docs/code/class/PerlTidy.html
@@ -154,7 +154,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/PrettyDiff.html b/docs/code/class/PrettyDiff.html
index f924608..c7d17b2 100644
--- a/docs/code/class/PrettyDiff.html
+++ b/docs/code/class/PrettyDiff.html
@@ -144,6 +144,7 @@
EJS: true,
HTML: true,
Handlebars: true,
+ Nunjucks: true,
XML: true,
SVG: true,
Spacebars: true,
@@ -151,7 +152,6 @@
JavaScript: true,
CSS: true,
SCSS: true,
- Sass: true,
JSON: true,
TSS: true,
Twig: true,
@@ -230,7 +230,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/PugBeautify.html b/docs/code/class/PugBeautify.html
index 57cfe66..e446942 100644
--- a/docs/code/class/PugBeautify.html
+++ b/docs/code/class/PugBeautify.html
@@ -146,7 +146,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/PuppetFix.html b/docs/code/class/PuppetFix.html
index 5ccc636..f15cb04 100644
--- a/docs/code/class/PuppetFix.html
+++ b/docs/code/class/PuppetFix.html
@@ -158,7 +158,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/R.html b/docs/code/class/R.html
new file mode 100644
index 0000000..63d99e8
--- /dev/null
+++ b/docs/code/class/R.html
@@ -0,0 +1,204 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ Class:
+ R
+
+
+
+ Defined in:
+ src/beautifiers/formatR/index.coffee
+
+
+ Inherits:
+
+ Beautifier
+
+
+
+
Variables Summary
+
+
+ name
+ =
+
+
+ "formatR"
+
+
+
+ link
+ =
+
+
+ "https://github.com/yihui/formatR"
+
+
+
+ options
+ =
+
+
+ {
+ R: true
+}
+
+
+
+
+ Variable inherited from
+ Beautifier
+
+
+ Promise
+ name
+ options
+ languages
+ beautify
+ _envCache
+ _envCacheDate
+ _envCacheExpiry
+ logger
+
+
Instance Method Summary
+
+
+ Inherited Method Summary
+
+ Methods inherited from
+ Beautifier
+
+
+ #deprecate
+ #tempFile
+ #readFile
+ #findFile
+ #getShellEnvironment
+ #which
+ #commandNotFoundError
+ #run
+ #spawn
+ #setupLogger
+
+
+
Instance Method Details
+
+
+
+ #
+(void)
+beautify (text, language, options)
+
+
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/class/Remark.html b/docs/code/class/Remark.html
index 3a9869b..d5f4086 100644
--- a/docs/code/class/Remark.html
+++ b/docs/code/class/Remark.html
@@ -158,7 +158,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Rubocop.html b/docs/code/class/Rubocop.html
index 7adaab1..ccb64bf 100644
--- a/docs/code/class/Rubocop.html
+++ b/docs/code/class/Rubocop.html
@@ -137,7 +137,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/RubyBeautify.html b/docs/code/class/RubyBeautify.html
index d1c7994..6f9320d 100644
--- a/docs/code/class/RubyBeautify.html
+++ b/docs/code/class/RubyBeautify.html
@@ -137,7 +137,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Rustfmt.html b/docs/code/class/Rustfmt.html
index 6095c3c..4efbbfe 100644
--- a/docs/code/class/Rustfmt.html
+++ b/docs/code/class/Rustfmt.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/SassConvert.html b/docs/code/class/SassConvert.html
new file mode 100644
index 0000000..284afc1
--- /dev/null
+++ b/docs/code/class/SassConvert.html
@@ -0,0 +1,210 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ Class:
+ SassConvert
+
+
+
+ Defined in:
+ src/beautifiers/sass-convert.coffee
+
+
+ Inherits:
+
+ Beautifier
+
+
+
+
Variables Summary
+
+
+ name
+ =
+
+
+ "SassConvert"
+
+
+
+ link
+ =
+
+
+ "http://sass-lang.com/documentation/file.SASS_REFERENCE.html#syntax"
+
+
+
+ options
+ =
+
+
+ {
+
+ /*
+ TODO: Add support for options
+ */
+ CSS: false,
+ Sass: false,
+ SCSS: false
+}
+
+
+
+
+ Variable inherited from
+ Beautifier
+
+
+ Promise
+ name
+ options
+ languages
+ beautify
+ _envCache
+ _envCacheDate
+ _envCacheExpiry
+ logger
+
+
Instance Method Summary
+
+
+ Inherited Method Summary
+
+ Methods inherited from
+ Beautifier
+
+
+ #deprecate
+ #tempFile
+ #readFile
+ #findFile
+ #getShellEnvironment
+ #which
+ #commandNotFoundError
+ #run
+ #spawn
+ #setupLogger
+
+
+
Instance Method Details
+
+
+
+ #
+(void)
+beautify (text, language, options, context)
+
+
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/class/Sqlformat.html b/docs/code/class/Sqlformat.html
index 7dd04eb..827a234 100644
--- a/docs/code/class/Sqlformat.html
+++ b/docs/code/class/Sqlformat.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/StylishHaskell.html b/docs/code/class/StylishHaskell.html
index 550b736..f665fad 100644
--- a/docs/code/class/StylishHaskell.html
+++ b/docs/code/class/StylishHaskell.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/TidyMarkdown.html b/docs/code/class/TidyMarkdown.html
index 50a7352..c593d33 100644
--- a/docs/code/class/TidyMarkdown.html
+++ b/docs/code/class/TidyMarkdown.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/TypeScriptFormatter.html b/docs/code/class/TypeScriptFormatter.html
index 7f04c2a..77f6744 100644
--- a/docs/code/class/TypeScriptFormatter.html
+++ b/docs/code/class/TypeScriptFormatter.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/Uncrustify.html b/docs/code/class/Uncrustify.html
index 4e8c41c..87552ce 100644
--- a/docs/code/class/Uncrustify.html
+++ b/docs/code/class/Uncrustify.html
@@ -143,7 +143,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class/VueBeautifier.html b/docs/code/class/VueBeautifier.html
new file mode 100644
index 0000000..d978747
--- /dev/null
+++ b/docs/code/class/VueBeautifier.html
@@ -0,0 +1,196 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ Class:
+ VueBeautifier
+
+
+
+ Defined in:
+ src/beautifiers/vue-beautifier.coffee
+
+
+ Inherits:
+
+ Beautifier
+
+
+
+
Variables Summary
+
+
+ name
+ =
+
+
+ "Vue Beautifier"
+
+
+
+ options
+ =
+
+
+ {
+ Vue: true
+}
+
+
+
+
+ Variable inherited from
+ Beautifier
+
+
+ Promise
+ name
+ options
+ languages
+ beautify
+ _envCache
+ _envCacheDate
+ _envCacheExpiry
+ logger
+
+
Instance Method Summary
+
+
+ Inherited Method Summary
+
+ Methods inherited from
+ Beautifier
+
+
+ #deprecate
+ #tempFile
+ #readFile
+ #findFile
+ #getShellEnvironment
+ #which
+ #commandNotFoundError
+ #run
+ #spawn
+ #setupLogger
+
+
+
Instance Method Details
+
+
+
+ #
+(void)
+beautify (text, language, options)
+
+
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/class/Yapf.html b/docs/code/class/Yapf.html
index 66af61c..bd3f1b1 100644
--- a/docs/code/class/Yapf.html
+++ b/docs/code/class/Yapf.html
@@ -134,7 +134,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/class_list.html b/docs/code/class_list.html
index 1e06d28..2a3c1c9 100644
--- a/docs/code/class_list.html
+++ b/docs/code/class_list.html
@@ -145,6 +145,18 @@
+
+
+ R
+
+
+ <
+ Beautifier
+
+
+
+
+
FortranBeautifier
@@ -385,6 +397,18 @@
+
+
+ SassConvert
+
+
+ <
+ Beautifier
+
+
+
+
+
Sqlformat
@@ -445,6 +469,18 @@
+
+
+ VueBeautifier
+
+
+ <
+ Beautifier
+
+
+
+
+
Yapf
diff --git a/docs/code/extra/CHANGELOG.md.html b/docs/code/extra/CHANGELOG.md.html
index 1f1e132..150e191 100644
--- a/docs/code/extra/CHANGELOG.md.html
+++ b/docs/code/extra/CHANGELOG.md.html
@@ -43,6 +43,8 @@
Add yapf beautifier for Python.
Closes [#776] (https://github.com/Glavin001/atom-beautify/issues/776 ) Add support for collapse-preserve-inline
brace_style for javascript.
Closes #786 YAPF configuration files are ignored.
+Fix phpcbf hanging issue by closing stdin. See #893
+Add warning notification when parsing .jsbeautifyrc
as JSON or YAML fails. See #1106
v0.29.0
@@ -486,7 +488,7 @@ editor's file to root, "/")
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/extra/README.md.html b/docs/code/extra/README.md.html
index e24da00..d439ad4 100644
--- a/docs/code/extra/README.md.html
+++ b/docs/code/extra/README.md.html
@@ -34,9 +34,23 @@
-
-
-
+
+
+
+
+Mac OS
+
+
+
+
+
+
+
+
+
+
+
+
Beautify HTML, CSS, JavaScript, PHP, Python, Ruby, Java, C, C++, C#, Objective-C, CoffeeScript, TypeScript, Coldfusion, SQL, and more in Atom
@@ -78,7 +92,10 @@
Contributing
Installation Atom Package: https://atom.io/packages/atom-beautify
apm install atom-beautify
-
Or Settings/Preferences ➔ Packages ➔ Search for atom-beautify
Language Support See all supported options in the documentation at docs/options.md
.
+Or Settings/Preferences ➔ Packages ➔ Search for atom-beautify
Important Notice: Analytics By default Anonymous Analytics
is enabled.
+If you do not wish to have usage data sent to Google Analytics then please disable Anonymous Analytics
option before using Atom-Beautify.
+See Anonymous Analytics
section of docs for details.
+Thank you.
Language Support See all supported options in the documentation at docs/options.md
.
Language
@@ -140,7 +157,7 @@
CSS
CSS
.css
-CSScomb
, JS Beautify
(Default), Pretty Diff
+CSScomb
, JS Beautify
(Default), Pretty Diff
, SassConvert
CSV
@@ -181,7 +198,7 @@
Fortran
Fortran - Modern
-.f90
+.f90
, .F90
Fortran Beautifier
(Default)
@@ -281,6 +298,12 @@
JS Beautify
(Default)
+Nunjucks
+Nunjucks
, Nunjucks Templates
, HTML (Nunjucks Templates)
+.njk
, .nunjucks
+Pretty Diff
(Default)
+
+
Objective-C
Objective-C
, Objective-C++
.m
, .mm
, .h
@@ -323,6 +346,12 @@
autopep8
(Default), yapf
+R
+R
+.r
, .R
+formatR
(Default)
+
+
Riot.js
Riot.js
, HTML (Riot Tag)
.tag
@@ -344,13 +373,13 @@
Sass
Sass
.sass
-CSScomb
, Pretty Diff
(Default)
+SassConvert
(Default)
SCSS
SCSS
.scss
-CSScomb
, Pretty Diff
(Default)
+CSScomb
, Pretty Diff
(Default), SassConvert
Spacebars
@@ -407,9 +436,15 @@
Pretty Diff
(Default)
+Vue
+Vue Component
+.vue
+Vue Beautifier
(Default)
+
+
XML
-SLD
, XML
, XHTML
, XSD
, XSL
, JSP
-.sld
, .xml
, .xhtml
, .xsd
, .xsl
, .jsp
+SLD
, XML
, XHTML
, XSD
, XSL
, JSP
, GSP
+.sld
, .xml
, .xhtml
, .xsd
, .xsl
, .jsp
, .gsp
JS Beautify
, Pretty Diff
(Default)
@@ -503,7 +538,7 @@ and submit a Pul
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/autopep8.coffee.html b/docs/code/file/src/beautifiers/autopep8.coffee.html
index 0f56870..6b796e7 100644
--- a/docs/code/file/src/beautifiers/autopep8.coffee.html
+++ b/docs/code/file/src/beautifiers/autopep8.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/beautifier.coffee.html b/docs/code/file/src/beautifiers/beautifier.coffee.html
index c292bd0..08285ab 100644
--- a/docs/code/file/src/beautifiers/beautifier.coffee.html
+++ b/docs/code/file/src/beautifiers/beautifier.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/clang-format.coffee.html b/docs/code/file/src/beautifiers/clang-format.coffee.html
index 9fed38a..9fa750c 100644
--- a/docs/code/file/src/beautifiers/clang-format.coffee.html
+++ b/docs/code/file/src/beautifiers/clang-format.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/coffee-fmt.coffee.html b/docs/code/file/src/beautifiers/coffee-fmt.coffee.html
index 6f1246f..28adc1e 100644
--- a/docs/code/file/src/beautifiers/coffee-fmt.coffee.html
+++ b/docs/code/file/src/beautifiers/coffee-fmt.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/coffee-formatter.coffee.html b/docs/code/file/src/beautifiers/coffee-formatter.coffee.html
index edd27d0..f6b269d 100644
--- a/docs/code/file/src/beautifiers/coffee-formatter.coffee.html
+++ b/docs/code/file/src/beautifiers/coffee-formatter.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/crystal.coffee.html b/docs/code/file/src/beautifiers/crystal.coffee.html
index d076b14..dc72973 100644
--- a/docs/code/file/src/beautifiers/crystal.coffee.html
+++ b/docs/code/file/src/beautifiers/crystal.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/csscomb.coffee.html b/docs/code/file/src/beautifiers/csscomb.coffee.html
index 3a0b9f6..507798e 100644
--- a/docs/code/file/src/beautifiers/csscomb.coffee.html
+++ b/docs/code/file/src/beautifiers/csscomb.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/dfmt.coffee.html b/docs/code/file/src/beautifiers/dfmt.coffee.html
index dd25d98..40e48b7 100644
--- a/docs/code/file/src/beautifiers/dfmt.coffee.html
+++ b/docs/code/file/src/beautifiers/dfmt.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/elm-format.coffee.html b/docs/code/file/src/beautifiers/elm-format.coffee.html
index 26d26e1..a34e7bb 100644
--- a/docs/code/file/src/beautifiers/elm-format.coffee.html
+++ b/docs/code/file/src/beautifiers/elm-format.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/erl_tidy.coffee.html b/docs/code/file/src/beautifiers/erl_tidy.coffee.html
index 87373e1..c18d530 100644
--- a/docs/code/file/src/beautifiers/erl_tidy.coffee.html
+++ b/docs/code/file/src/beautifiers/erl_tidy.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/formatR/index.coffee.html b/docs/code/file/src/beautifiers/formatR/index.coffee.html
new file mode 100644
index 0000000..b16fabc
--- /dev/null
+++ b/docs/code/file/src/beautifiers/formatR/index.coffee.html
@@ -0,0 +1,125 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ File:
+ index.coffee
+
+
+
+ Defined in:
+ src/beautifiers/formatR
+
+
+
+ Classes:
+
+
+
+ R
+
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/file/src/beautifiers/fortran-beautifier/index.coffee.html b/docs/code/file/src/beautifiers/fortran-beautifier/index.coffee.html
index 66d40bd..90173b9 100644
--- a/docs/code/file/src/beautifiers/fortran-beautifier/index.coffee.html
+++ b/docs/code/file/src/beautifiers/fortran-beautifier/index.coffee.html
@@ -55,7 +55,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/gherkin.coffee.html b/docs/code/file/src/beautifiers/gherkin.coffee.html
index 9cb045d..0677655 100644
--- a/docs/code/file/src/beautifiers/gherkin.coffee.html
+++ b/docs/code/file/src/beautifiers/gherkin.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/gofmt.coffee.html b/docs/code/file/src/beautifiers/gofmt.coffee.html
index d41649b..a9dcc95 100644
--- a/docs/code/file/src/beautifiers/gofmt.coffee.html
+++ b/docs/code/file/src/beautifiers/gofmt.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/htmlbeautifier.coffee.html b/docs/code/file/src/beautifiers/htmlbeautifier.coffee.html
index f250cb0..5a69ddc 100644
--- a/docs/code/file/src/beautifiers/htmlbeautifier.coffee.html
+++ b/docs/code/file/src/beautifiers/htmlbeautifier.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/index.coffee.html b/docs/code/file/src/beautifiers/index.coffee.html
index 1205148..07468b8 100644
--- a/docs/code/file/src/beautifiers/index.coffee.html
+++ b/docs/code/file/src/beautifiers/index.coffee.html
@@ -128,7 +128,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/js-beautify.coffee.html b/docs/code/file/src/beautifiers/js-beautify.coffee.html
index b677f43..9422f72 100644
--- a/docs/code/file/src/beautifiers/js-beautify.coffee.html
+++ b/docs/code/file/src/beautifiers/js-beautify.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/jscs.coffee.html b/docs/code/file/src/beautifiers/jscs.coffee.html
index 9529aaa..11908c8 100644
--- a/docs/code/file/src/beautifiers/jscs.coffee.html
+++ b/docs/code/file/src/beautifiers/jscs.coffee.html
@@ -80,7 +80,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/latex-beautify.coffee.html b/docs/code/file/src/beautifiers/latex-beautify.coffee.html
index f1c2e1d..9b7bb3e 100644
--- a/docs/code/file/src/beautifiers/latex-beautify.coffee.html
+++ b/docs/code/file/src/beautifiers/latex-beautify.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/lua-beautifier/index.coffee.html b/docs/code/file/src/beautifiers/lua-beautifier/index.coffee.html
index 050f0b8..676af8d 100644
--- a/docs/code/file/src/beautifiers/lua-beautifier/index.coffee.html
+++ b/docs/code/file/src/beautifiers/lua-beautifier/index.coffee.html
@@ -55,7 +55,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/marko-beautifier.coffee.html b/docs/code/file/src/beautifiers/marko-beautifier.coffee.html
index 69ef85f..b3660b4 100644
--- a/docs/code/file/src/beautifiers/marko-beautifier.coffee.html
+++ b/docs/code/file/src/beautifiers/marko-beautifier.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/ocp-indent.coffee.html b/docs/code/file/src/beautifiers/ocp-indent.coffee.html
index 6a80eb0..9653373 100644
--- a/docs/code/file/src/beautifiers/ocp-indent.coffee.html
+++ b/docs/code/file/src/beautifiers/ocp-indent.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/perltidy.coffee.html b/docs/code/file/src/beautifiers/perltidy.coffee.html
index e13a97d..d74f3d9 100644
--- a/docs/code/file/src/beautifiers/perltidy.coffee.html
+++ b/docs/code/file/src/beautifiers/perltidy.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/php-cs-fixer.coffee.html b/docs/code/file/src/beautifiers/php-cs-fixer.coffee.html
index a85720d..8d7ffef 100644
--- a/docs/code/file/src/beautifiers/php-cs-fixer.coffee.html
+++ b/docs/code/file/src/beautifiers/php-cs-fixer.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/phpcbf.coffee.html b/docs/code/file/src/beautifiers/phpcbf.coffee.html
index 4493c62..183bd5b 100644
--- a/docs/code/file/src/beautifiers/phpcbf.coffee.html
+++ b/docs/code/file/src/beautifiers/phpcbf.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/prettydiff.coffee.html b/docs/code/file/src/beautifiers/prettydiff.coffee.html
index 77791a8..61cb1af 100644
--- a/docs/code/file/src/beautifiers/prettydiff.coffee.html
+++ b/docs/code/file/src/beautifiers/prettydiff.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/pug-beautify.coffee.html b/docs/code/file/src/beautifiers/pug-beautify.coffee.html
index f66cedd..c482a5d 100644
--- a/docs/code/file/src/beautifiers/pug-beautify.coffee.html
+++ b/docs/code/file/src/beautifiers/pug-beautify.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/puppet-fix.coffee.html b/docs/code/file/src/beautifiers/puppet-fix.coffee.html
index 9043cfa..3fd3a5c 100644
--- a/docs/code/file/src/beautifiers/puppet-fix.coffee.html
+++ b/docs/code/file/src/beautifiers/puppet-fix.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/remark.coffee.html b/docs/code/file/src/beautifiers/remark.coffee.html
index 2ccc3cc..adb12bf 100644
--- a/docs/code/file/src/beautifiers/remark.coffee.html
+++ b/docs/code/file/src/beautifiers/remark.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/rubocop.coffee.html b/docs/code/file/src/beautifiers/rubocop.coffee.html
index 04c592f..a08098f 100644
--- a/docs/code/file/src/beautifiers/rubocop.coffee.html
+++ b/docs/code/file/src/beautifiers/rubocop.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/ruby-beautify.coffee.html b/docs/code/file/src/beautifiers/ruby-beautify.coffee.html
index b5c4acb..fe8e5f5 100644
--- a/docs/code/file/src/beautifiers/ruby-beautify.coffee.html
+++ b/docs/code/file/src/beautifiers/ruby-beautify.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/rustfmt.coffee.html b/docs/code/file/src/beautifiers/rustfmt.coffee.html
index ee32088..426e2fe 100644
--- a/docs/code/file/src/beautifiers/rustfmt.coffee.html
+++ b/docs/code/file/src/beautifiers/rustfmt.coffee.html
@@ -64,7 +64,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/sass-convert.coffee.html b/docs/code/file/src/beautifiers/sass-convert.coffee.html
new file mode 100644
index 0000000..be416e2
--- /dev/null
+++ b/docs/code/file/src/beautifiers/sass-convert.coffee.html
@@ -0,0 +1,123 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ File:
+ sass-convert.coffee
+
+
+
+ Defined in:
+ src/beautifiers
+
+
+
+ Classes:
+
+
+
+ SassConvert
+
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/file/src/beautifiers/sqlformat.coffee.html b/docs/code/file/src/beautifiers/sqlformat.coffee.html
index 17001b0..79854cd 100644
--- a/docs/code/file/src/beautifiers/sqlformat.coffee.html
+++ b/docs/code/file/src/beautifiers/sqlformat.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/stylish-haskell.coffee.html b/docs/code/file/src/beautifiers/stylish-haskell.coffee.html
index 9daae6f..6d14dea 100644
--- a/docs/code/file/src/beautifiers/stylish-haskell.coffee.html
+++ b/docs/code/file/src/beautifiers/stylish-haskell.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/tidy-markdown.coffee.html b/docs/code/file/src/beautifiers/tidy-markdown.coffee.html
index a6e12e7..d9b06b3 100644
--- a/docs/code/file/src/beautifiers/tidy-markdown.coffee.html
+++ b/docs/code/file/src/beautifiers/tidy-markdown.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/typescript-formatter.coffee.html b/docs/code/file/src/beautifiers/typescript-formatter.coffee.html
index 7cb046b..892a379 100644
--- a/docs/code/file/src/beautifiers/typescript-formatter.coffee.html
+++ b/docs/code/file/src/beautifiers/typescript-formatter.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/uncrustify/cfg.coffee.html b/docs/code/file/src/beautifiers/uncrustify/cfg.coffee.html
index 4c8f324..192778c 100644
--- a/docs/code/file/src/beautifiers/uncrustify/cfg.coffee.html
+++ b/docs/code/file/src/beautifiers/uncrustify/cfg.coffee.html
@@ -45,7 +45,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/uncrustify/index.coffee.html b/docs/code/file/src/beautifiers/uncrustify/index.coffee.html
index caf490a..35f1680 100644
--- a/docs/code/file/src/beautifiers/uncrustify/index.coffee.html
+++ b/docs/code/file/src/beautifiers/uncrustify/index.coffee.html
@@ -55,7 +55,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautifiers/vue-beautifier.coffee.html b/docs/code/file/src/beautifiers/vue-beautifier.coffee.html
new file mode 100644
index 0000000..eaa0252
--- /dev/null
+++ b/docs/code/file/src/beautifiers/vue-beautifier.coffee.html
@@ -0,0 +1,123 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ File:
+ vue-beautifier.coffee
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/file/src/beautifiers/yapf.coffee.html b/docs/code/file/src/beautifiers/yapf.coffee.html
index a258101..688e7a9 100644
--- a/docs/code/file/src/beautifiers/yapf.coffee.html
+++ b/docs/code/file/src/beautifiers/yapf.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/beautify.coffee.html b/docs/code/file/src/beautify.coffee.html
index e254fb4..395ba68 100644
--- a/docs/code/file/src/beautify.coffee.html
+++ b/docs/code/file/src/beautify.coffee.html
@@ -354,7 +354,7 @@ return data;
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/config.coffee.html b/docs/code/file/src/config.coffee.html
index 59bc9b3..14d6be0 100644
--- a/docs/code/file/src/config.coffee.html
+++ b/docs/code/file/src/config.coffee.html
@@ -54,7 +54,7 @@
title: 'Anonymous Analytics',
type: 'boolean',
"default": true,
- description: "There is [Segment.io](https://segment.io/) which forwards data to [Google Analytics](http://www.google.com/analytics/) to track what languages are being used the most, as well as other stats. Everything is anonymized and no personal information, such as source code, is sent. See https://github.com/Glavin001/atom-beautify/issues/47 for more details."
+ description: "[Google Analytics](http://www.google.com/analytics/) is used to track what languages are being used the most and causing the most errors, as well as other stats such as performance. Everything is anonymized and no personal information, such as source code, is sent. See https://github.com/Glavin001/atom-beautify/issues/47 for more details."
},
_analyticsUserId: {
title: 'Analytics User Id',
@@ -99,7 +99,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/apex.coffee.html b/docs/code/file/src/languages/apex.coffee.html
index 710afc1..948a672 100644
--- a/docs/code/file/src/languages/apex.coffee.html
+++ b/docs/code/file/src/languages/apex.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/arduino.coffee.html b/docs/code/file/src/languages/arduino.coffee.html
index 37dfbe8..d687c52 100644
--- a/docs/code/file/src/languages/arduino.coffee.html
+++ b/docs/code/file/src/languages/arduino.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/c-sharp.coffee.html b/docs/code/file/src/languages/c-sharp.coffee.html
index 2555b7f..54c1ec0 100644
--- a/docs/code/file/src/languages/c-sharp.coffee.html
+++ b/docs/code/file/src/languages/c-sharp.coffee.html
@@ -75,7 +75,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/c.coffee.html b/docs/code/file/src/languages/c.coffee.html
index a5bfd7e..eabdd7c 100644
--- a/docs/code/file/src/languages/c.coffee.html
+++ b/docs/code/file/src/languages/c.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/coffeescript.coffee.html b/docs/code/file/src/languages/coffeescript.coffee.html
index 75faf77..739aed9 100644
--- a/docs/code/file/src/languages/coffeescript.coffee.html
+++ b/docs/code/file/src/languages/coffeescript.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/coldfusion.coffee.html b/docs/code/file/src/languages/coldfusion.coffee.html
index fb87c3c..3c399f3 100644
--- a/docs/code/file/src/languages/coldfusion.coffee.html
+++ b/docs/code/file/src/languages/coldfusion.coffee.html
@@ -116,7 +116,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/cpp.coffee.html b/docs/code/file/src/languages/cpp.coffee.html
index c850f42..0a15fa8 100644
--- a/docs/code/file/src/languages/cpp.coffee.html
+++ b/docs/code/file/src/languages/cpp.coffee.html
@@ -75,7 +75,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/crystal.coffee.html b/docs/code/file/src/languages/crystal.coffee.html
index db9c285..1883f9f 100644
--- a/docs/code/file/src/languages/crystal.coffee.html
+++ b/docs/code/file/src/languages/crystal.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/css.coffee.html b/docs/code/file/src/languages/css.coffee.html
index bfa948f..efef729 100644
--- a/docs/code/file/src/languages/css.coffee.html
+++ b/docs/code/file/src/languages/css.coffee.html
@@ -110,7 +110,7 @@
},
newline_between_rules: {
type: 'boolean',
- "default": false,
+ "default": true,
description: "Add a newline between CSS rules"
},
preserve_newlines: {
@@ -123,6 +123,11 @@
"default": 0,
description: "Maximum amount of characters per line (0 = disable)"
},
+ end_with_newline: {
+ type: 'boolean',
+ "default": false,
+ description: "End output with newline"
+ },
indent_comments: {
type: 'boolean',
"default": true,
@@ -173,7 +178,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/csv.coffee.html b/docs/code/file/src/languages/csv.coffee.html
index cac507b..e554aad 100644
--- a/docs/code/file/src/languages/csv.coffee.html
+++ b/docs/code/file/src/languages/csv.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/d.coffee.html b/docs/code/file/src/languages/d.coffee.html
index 5461990..c71707a 100644
--- a/docs/code/file/src/languages/d.coffee.html
+++ b/docs/code/file/src/languages/d.coffee.html
@@ -75,7 +75,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/ejs.coffee.html b/docs/code/file/src/languages/ejs.coffee.html
index 9172986..7a01901 100644
--- a/docs/code/file/src/languages/ejs.coffee.html
+++ b/docs/code/file/src/languages/ejs.coffee.html
@@ -70,7 +70,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/elm.coffee.html b/docs/code/file/src/languages/elm.coffee.html
index e670ed9..8b043c4 100644
--- a/docs/code/file/src/languages/elm.coffee.html
+++ b/docs/code/file/src/languages/elm.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/erb.coffee.html b/docs/code/file/src/languages/erb.coffee.html
index d85b767..57765ad 100644
--- a/docs/code/file/src/languages/erb.coffee.html
+++ b/docs/code/file/src/languages/erb.coffee.html
@@ -70,7 +70,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/erlang.coffee.html b/docs/code/file/src/languages/erlang.coffee.html
index 10d427d..00f7301 100644
--- a/docs/code/file/src/languages/erlang.coffee.html
+++ b/docs/code/file/src/languages/erlang.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/fortran.coffee.html b/docs/code/file/src/languages/fortran.coffee.html
index c9ce473..a29a596 100644
--- a/docs/code/file/src/languages/fortran.coffee.html
+++ b/docs/code/file/src/languages/fortran.coffee.html
@@ -56,7 +56,7 @@
/*
Supported extensions
*/
- extensions: ["f90"],
+ extensions: ["f90", "F90"],
/*
*/
@@ -86,7 +86,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/gherkin.coffee.html b/docs/code/file/src/languages/gherkin.coffee.html
index fc86bc9..ac5b5e6 100644
--- a/docs/code/file/src/languages/gherkin.coffee.html
+++ b/docs/code/file/src/languages/gherkin.coffee.html
@@ -89,7 +89,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/go.coffee.html b/docs/code/file/src/languages/go.coffee.html
index ec1fb65..774ac28 100644
--- a/docs/code/file/src/languages/go.coffee.html
+++ b/docs/code/file/src/languages/go.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/handlebars.coffee.html b/docs/code/file/src/languages/handlebars.coffee.html
index b7b52c9..e8fcb73 100644
--- a/docs/code/file/src/languages/handlebars.coffee.html
+++ b/docs/code/file/src/languages/handlebars.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/haskell.coffee.html b/docs/code/file/src/languages/haskell.coffee.html
index cac049d..0471752 100644
--- a/docs/code/file/src/languages/haskell.coffee.html
+++ b/docs/code/file/src/languages/haskell.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/html.coffee.html b/docs/code/file/src/languages/html.coffee.html
index 49161ed..def49dc 100644
--- a/docs/code/file/src/languages/html.coffee.html
+++ b/docs/code/file/src/languages/html.coffee.html
@@ -143,7 +143,7 @@
},
unformatted: {
type: 'array',
- "default": ['a', 'span', 'img', 'bdo', 'em', 'strong', 'dfn', 'code', 'samp', 'kbd', 'var', 'cite', 'abbr', 'acronym', 'q', 'sub', 'sup', 'tt', 'i', 'b', 'big', 'small', 'u', 's', 'strike', 'font', 'ins', 'del', 'pre', 'address', 'dt', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'],
+ "default": ['a', 'abbr', 'area', 'audio', 'b', 'bdi', 'bdo', 'br', 'button', 'canvas', 'cite', 'code', 'data', 'datalist', 'del', 'dfn', 'em', 'embed', 'i', 'iframe', 'img', 'input', 'ins', 'kbd', 'keygen', 'label', 'map', 'mark', 'math', 'meter', 'noscript', 'object', 'output', 'progress', 'q', 'ruby', 's', 'samp', 'select', 'small', 'span', 'strong', 'sub', 'sup', 'svg', 'template', 'textarea', 'time', 'u', 'var', 'video', 'wbr', 'text', 'acronym', 'address', 'big', 'dt', 'ins', 'small', 'strike', 'tt', 'pre', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6'],
items: {
type: 'string'
},
@@ -173,7 +173,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/index.coffee.html b/docs/code/file/src/languages/index.coffee.html
index aa14742..5a78a18 100644
--- a/docs/code/file/src/languages/index.coffee.html
+++ b/docs/code/file/src/languages/index.coffee.html
@@ -54,7 +54,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/jade.coffee.html b/docs/code/file/src/languages/jade.coffee.html
index 7d35031..86ee084 100644
--- a/docs/code/file/src/languages/jade.coffee.html
+++ b/docs/code/file/src/languages/jade.coffee.html
@@ -117,7 +117,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/java.coffee.html b/docs/code/file/src/languages/java.coffee.html
index 5f59c41..c915723 100644
--- a/docs/code/file/src/languages/java.coffee.html
+++ b/docs/code/file/src/languages/java.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/javascript.coffee.html b/docs/code/file/src/languages/javascript.coffee.html
index 97a839b..d7fa80e 100644
--- a/docs/code/file/src/languages/javascript.coffee.html
+++ b/docs/code/file/src/languages/javascript.coffee.html
@@ -202,7 +202,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/json.coffee.html b/docs/code/file/src/languages/json.coffee.html
index 905d62b..8bc1c3a 100644
--- a/docs/code/file/src/languages/json.coffee.html
+++ b/docs/code/file/src/languages/json.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/jsx.coffee.html b/docs/code/file/src/languages/jsx.coffee.html
index 696f717..af42873 100644
--- a/docs/code/file/src/languages/jsx.coffee.html
+++ b/docs/code/file/src/languages/jsx.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/latex.coffee.html b/docs/code/file/src/languages/latex.coffee.html
index 6305b1c..98796b6 100644
--- a/docs/code/file/src/languages/latex.coffee.html
+++ b/docs/code/file/src/languages/latex.coffee.html
@@ -136,7 +136,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/less.coffee.html b/docs/code/file/src/languages/less.coffee.html
index 4832804..05d2040 100644
--- a/docs/code/file/src/languages/less.coffee.html
+++ b/docs/code/file/src/languages/less.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/lua.coffee.html b/docs/code/file/src/languages/lua.coffee.html
index b87a12e..cdef09c 100644
--- a/docs/code/file/src/languages/lua.coffee.html
+++ b/docs/code/file/src/languages/lua.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/markdown.coffee.html b/docs/code/file/src/languages/markdown.coffee.html
index 09b1361..2e60f97 100644
--- a/docs/code/file/src/languages/markdown.coffee.html
+++ b/docs/code/file/src/languages/markdown.coffee.html
@@ -85,7 +85,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/marko.coffee.html b/docs/code/file/src/languages/marko.coffee.html
index 4068f69..6eea29e 100644
--- a/docs/code/file/src/languages/marko.coffee.html
+++ b/docs/code/file/src/languages/marko.coffee.html
@@ -116,7 +116,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/mustache.coffee.html b/docs/code/file/src/languages/mustache.coffee.html
index 98e5c13..36a58fd 100644
--- a/docs/code/file/src/languages/mustache.coffee.html
+++ b/docs/code/file/src/languages/mustache.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/nunjucks.coffee.html b/docs/code/file/src/languages/nunjucks.coffee.html
new file mode 100644
index 0000000..b737eb6
--- /dev/null
+++ b/docs/code/file/src/languages/nunjucks.coffee.html
@@ -0,0 +1,139 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ File:
+ nunjucks.coffee
+
+
+
+ Defined in:
+ src/languages
+
+
+
Variables Summary
+
+
+ module.exports
+ =
+
+
+ {
+ name: "Nunjucks",
+ namespace: "nunjucks",
+ fallback: ['html', 'mustache'],
+
+ /*
+ Supported Grammars
+ */
+ grammars: ["Nunjucks", "Nunjucks Templates", "HTML (Nunjucks Templates)"],
+
+ /*
+ Supported extensions
+ */
+ extensions: ["njk", "nunjucks"],
+ options: []
+}
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/file/src/languages/objective-c.coffee.html b/docs/code/file/src/languages/objective-c.coffee.html
index 48ba4bc..f81657e 100644
--- a/docs/code/file/src/languages/objective-c.coffee.html
+++ b/docs/code/file/src/languages/objective-c.coffee.html
@@ -76,7 +76,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/ocaml.coffee.html b/docs/code/file/src/languages/ocaml.coffee.html
index ed60757..e001b6f 100644
--- a/docs/code/file/src/languages/ocaml.coffee.html
+++ b/docs/code/file/src/languages/ocaml.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/pawn.coffee.html b/docs/code/file/src/languages/pawn.coffee.html
index b45898b..b3cd686 100644
--- a/docs/code/file/src/languages/pawn.coffee.html
+++ b/docs/code/file/src/languages/pawn.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/perl.coffee.html b/docs/code/file/src/languages/perl.coffee.html
index 2ef06f3..4be9ee2 100644
--- a/docs/code/file/src/languages/perl.coffee.html
+++ b/docs/code/file/src/languages/perl.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/php.coffee.html b/docs/code/file/src/languages/php.coffee.html
index 9535fc0..5d152bf 100644
--- a/docs/code/file/src/languages/php.coffee.html
+++ b/docs/code/file/src/languages/php.coffee.html
@@ -97,7 +97,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/puppet.coffee.html b/docs/code/file/src/languages/puppet.coffee.html
index de47a39..d824e80 100644
--- a/docs/code/file/src/languages/puppet.coffee.html
+++ b/docs/code/file/src/languages/puppet.coffee.html
@@ -67,7 +67,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/python.coffee.html b/docs/code/file/src/languages/python.coffee.html
index d0759ff..9c75144 100644
--- a/docs/code/file/src/languages/python.coffee.html
+++ b/docs/code/file/src/languages/python.coffee.html
@@ -121,7 +121,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/r.coffee.html b/docs/code/file/src/languages/r.coffee.html
new file mode 100644
index 0000000..f8b6780
--- /dev/null
+++ b/docs/code/file/src/languages/r.coffee.html
@@ -0,0 +1,172 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ File:
+ r.coffee
+
+
+
+ Defined in:
+ src/languages
+
+
+
Variables Summary
+
+
+ scope
+ =
+
+
+ ['text.html']
+
+
+
+
+
+ defaultIndentSize
+ =
+
+
+ (softTabs ? tabLength : 1)
+
+
+
+ defaultIndentChar
+ =
+
+
+ (softTabs ? " " : "\t")
+
+
+
+ module.exports
+ =
+
+
+ {
+ name: "R",
+ namespace: "r",
+
+ /*
+ Supported Grammars
+ */
+ grammars: ["R"],
+
+ /*
+ Supported extensions
+ */
+ extensions: ["r", "R"],
+ options: {
+ indent_size: {
+ type: 'integer',
+ "default": defaultIndentSize,
+ description: "Indentation size/length"
+ }
+ }
+}
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/file/src/languages/riotjs.coffee.html b/docs/code/file/src/languages/riotjs.coffee.html
index 24b6f09..ed8039f 100644
--- a/docs/code/file/src/languages/riotjs.coffee.html
+++ b/docs/code/file/src/languages/riotjs.coffee.html
@@ -71,7 +71,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/ruby.coffee.html b/docs/code/file/src/languages/ruby.coffee.html
index d3bf8ad..86fc845 100644
--- a/docs/code/file/src/languages/ruby.coffee.html
+++ b/docs/code/file/src/languages/ruby.coffee.html
@@ -115,7 +115,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/rust.coffee.html b/docs/code/file/src/languages/rust.coffee.html
index e8f40e7..84904c7 100644
--- a/docs/code/file/src/languages/rust.coffee.html
+++ b/docs/code/file/src/languages/rust.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/sass.coffee.html b/docs/code/file/src/languages/sass.coffee.html
index 8859f1c..d9abc3d 100644
--- a/docs/code/file/src/languages/sass.coffee.html
+++ b/docs/code/file/src/languages/sass.coffee.html
@@ -47,7 +47,7 @@
{
name: "Sass",
namespace: "sass",
- fallback: ['css', 'scss'],
+ fallback: ['css'],
/*
Supported Grammars
@@ -58,7 +58,7 @@
Supported extensions
*/
extensions: ["sass"],
- defaultBeautifier: "Pretty Diff"
+ defaultBeautifier: "SassConvert"
}
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/scss.coffee.html b/docs/code/file/src/languages/scss.coffee.html
index 4425736..5b352f5 100644
--- a/docs/code/file/src/languages/scss.coffee.html
+++ b/docs/code/file/src/languages/scss.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/spacebars.coffee.html b/docs/code/file/src/languages/spacebars.coffee.html
index e37563d..61a7846 100644
--- a/docs/code/file/src/languages/spacebars.coffee.html
+++ b/docs/code/file/src/languages/spacebars.coffee.html
@@ -70,7 +70,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/sql.coffee.html b/docs/code/file/src/languages/sql.coffee.html
index 39d7339..33963dd 100644
--- a/docs/code/file/src/languages/sql.coffee.html
+++ b/docs/code/file/src/languages/sql.coffee.html
@@ -119,7 +119,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/svg.coffee.html b/docs/code/file/src/languages/svg.coffee.html
index 5668d5e..f346ac8 100644
--- a/docs/code/file/src/languages/svg.coffee.html
+++ b/docs/code/file/src/languages/svg.coffee.html
@@ -71,7 +71,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/swig.coffee.html b/docs/code/file/src/languages/swig.coffee.html
index aee9db9..cc78191 100644
--- a/docs/code/file/src/languages/swig.coffee.html
+++ b/docs/code/file/src/languages/swig.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/tss.coffee.html b/docs/code/file/src/languages/tss.coffee.html
index 9c696e6..ac1700f 100644
--- a/docs/code/file/src/languages/tss.coffee.html
+++ b/docs/code/file/src/languages/tss.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/twig.coffee.html b/docs/code/file/src/languages/twig.coffee.html
index d8a0339..55dbaae 100644
--- a/docs/code/file/src/languages/twig.coffee.html
+++ b/docs/code/file/src/languages/twig.coffee.html
@@ -70,7 +70,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/typescript.coffee.html b/docs/code/file/src/languages/typescript.coffee.html
index aabcbdd..89c4025 100644
--- a/docs/code/file/src/languages/typescript.coffee.html
+++ b/docs/code/file/src/languages/typescript.coffee.html
@@ -68,7 +68,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/vala.coffee.html b/docs/code/file/src/languages/vala.coffee.html
index 0063199..87ff6da 100644
--- a/docs/code/file/src/languages/vala.coffee.html
+++ b/docs/code/file/src/languages/vala.coffee.html
@@ -74,7 +74,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/visualforce.coffee.html b/docs/code/file/src/languages/visualforce.coffee.html
index d3defb2..b138461 100644
--- a/docs/code/file/src/languages/visualforce.coffee.html
+++ b/docs/code/file/src/languages/visualforce.coffee.html
@@ -69,7 +69,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/vue.coffee.html b/docs/code/file/src/languages/vue.coffee.html
new file mode 100644
index 0000000..f4c3caa
--- /dev/null
+++ b/docs/code/file/src/languages/vue.coffee.html
@@ -0,0 +1,139 @@
+
+
+
+
+ Atom-Beautify Documentation
+
+
+
+
+
+
+
+
+
+ File:
+ vue.coffee
+
+
+
+ Defined in:
+ src/languages
+
+
+
Variables Summary
+
+
+ module.exports
+ =
+
+
+ {
+ name: "Vue",
+ namespace: "vue",
+ fallback: ['html'],
+
+ /*
+ Supported Grammars
+ */
+ grammars: ["Vue Component"],
+
+ /*
+ Supported extensions
+ */
+ extensions: ["vue"],
+ defaultBeautifier: "Vue Beautifier"
+}
+
+
+
+
+
+
+
+
+
+ Quickly fuzzy find classes, mixins, methods, file:
+
+
+
+ T
+ Open fuzzy finder dialog
+
+
+
+ Control the navigation frame:
+
+
+
+ L
+ Toggle list view
+
+
+ C
+ Show class list
+
+
+ I
+ Show mixin list
+
+
+ F
+ Show file list
+
+
+ M
+ Show method list
+
+
+ E
+ Show extras list
+
+
+
+ You can focus and blur the search input:
+
+
+
+ S
+ Focus search input
+
+
+ Esc
+ Blur search input
+
+
+
+
+
\ No newline at end of file
diff --git a/docs/code/file/src/languages/xml.coffee.html b/docs/code/file/src/languages/xml.coffee.html
index e371fa9..eb16da7 100644
--- a/docs/code/file/src/languages/xml.coffee.html
+++ b/docs/code/file/src/languages/xml.coffee.html
@@ -53,12 +53,12 @@
/*
Supported Grammars
*/
- grammars: ["SLD", "XML", "XHTML", "XSD", "XSL", "JSP"],
+ grammars: ["SLD", "XML", "XHTML", "XSD", "XSL", "JSP", "GSP"],
/*
Supported extensions
*/
- extensions: ['sld', 'xml', 'xhtml', 'xsd', 'xsl', 'jsp'],
+ extensions: ['sld', 'xml', 'xhtml', 'xsd', 'xsl', 'jsp', 'gsp'],
defaultBeautifier: "Pretty Diff",
options: []
}
@@ -71,7 +71,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/languages/xtemplate.coffee.html b/docs/code/file/src/languages/xtemplate.coffee.html
index fca8abd..877c78d 100644
--- a/docs/code/file/src/languages/xtemplate.coffee.html
+++ b/docs/code/file/src/languages/xtemplate.coffee.html
@@ -70,7 +70,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/views/loading-view.coffee.html b/docs/code/file/src/views/loading-view.coffee.html
index 5ef38ea..64b0ad1 100644
--- a/docs/code/file/src/views/loading-view.coffee.html
+++ b/docs/code/file/src/views/loading-view.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file/src/views/message-view.coffee.html b/docs/code/file/src/views/message-view.coffee.html
index 8733e64..5de10e9 100644
--- a/docs/code/file/src/views/message-view.coffee.html
+++ b/docs/code/file/src/views/message-view.coffee.html
@@ -53,7 +53,7 @@
Codo
- 2.1.1
+ 2.1.2
✲
Press H to see the keyboard shortcuts
✲
diff --git a/docs/code/file_list.html b/docs/code/file_list.html
index 7f32cf6..6b094b7 100644
--- a/docs/code/file_list.html
+++ b/docs/code/file_list.html
@@ -121,6 +121,22 @@
src/beautifiers
+
+
+ formatR
+
+
+
+
fortran-beautifier
@@ -305,6 +321,14 @@
src/beautifiers
+
+
+ sass-convert.coffee
+
+
+ src/beautifiers
+
+
sqlformat.coffee
@@ -361,6 +385,14 @@
+
+
+ vue-beautifier.coffee
+
+
+ src/beautifiers
+
+
yapf.coffee
@@ -657,6 +689,14 @@
src/languages
+
+
+ nunjucks.coffee
+
+
+ src/languages
+
+
objective-c.coffee
@@ -713,6 +753,14 @@
src/languages
+
+
+ r.coffee
+
+
+ src/languages
+
+
riotjs.coffee
@@ -825,6 +873,14 @@
src/languages
+
+
+ vue.coffee
+
+
+ src/languages
+
+
xml.coffee
diff --git a/docs/code/javascript/search.js b/docs/code/javascript/search.js
index 5c5bc12..238279e 100644
--- a/docs/code/javascript/search.js
+++ b/docs/code/javascript/search.js
@@ -1 +1 @@
-window.searchData = [{"t":"Autopep8","p":"class/Autopep8.html"},{"t":"Beautifier","p":"class/Beautifier.html"},{"t":"ClangFormat","p":"class/ClangFormat.html"},{"t":"CoffeeFmt","p":"class/CoffeeFmt.html"},{"t":"CoffeeFormatter","p":"class/CoffeeFormatter.html"},{"t":"Crystal","p":"class/Crystal.html"},{"t":"JSBeautify","p":"class/JSBeautify.html"},{"t":"Dfmt","p":"class/Dfmt.html"},{"t":"ElmFormat","p":"class/ElmFormat.html"},{"t":"ErlTidy","p":"class/ErlTidy.html"},{"t":"FortranBeautifier","p":"class/FortranBeautifier.html"},{"t":"Gherkin","p":"class/Gherkin.html"},{"t":"Gofmt","p":"class/Gofmt.html"},{"t":"HTMLBeautifier","p":"class/HTMLBeautifier.html"},{"t":"Beautifiers","p":"class/Beautifiers.html"},{"t":"JSBeautify","p":"class/JSBeautify.html"},{"t":"JSCSFixer","p":"class/JSCSFixer.html"},{"t":"LatexBeautify","p":"class/LatexBeautify.html"},{"t":"Lua","p":"class/Lua.html"},{"t":"MarkoBeautifier","p":"class/MarkoBeautifier.html"},{"t":"OCPIndent","p":"class/OCPIndent.html"},{"t":"PerlTidy","p":"class/PerlTidy.html"},{"t":"PHPCSFixer","p":"class/PHPCSFixer.html"},{"t":"PHPCBF","p":"class/PHPCBF.html"},{"t":"PrettyDiff","p":"class/PrettyDiff.html"},{"t":"PugBeautify","p":"class/PugBeautify.html"},{"t":"PuppetFix","p":"class/PuppetFix.html"},{"t":"Remark","p":"class/Remark.html"},{"t":"Rubocop","p":"class/Rubocop.html"},{"t":"RubyBeautify","p":"class/RubyBeautify.html"},{"t":"Rustfmt","p":"class/Rustfmt.html"},{"t":"Sqlformat","p":"class/Sqlformat.html"},{"t":"StylishHaskell","p":"class/StylishHaskell.html"},{"t":"TidyMarkdown","p":"class/TidyMarkdown.html"},{"t":"TypeScriptFormatter","p":"class/TypeScriptFormatter.html"},{"t":"Uncrustify","p":"class/Uncrustify.html"},{"t":"Yapf","p":"class/Yapf.html"},{"t":"LoadingView","p":"class/LoadingView.html"},{"t":"MessageView","p":"class/MessageView.html"},{"t":"src/beautifiers/autopep8.coffee","p":"file/src/beautifiers/autopep8.coffee.html"},{"t":"src/beautifiers/beautifier.coffee","p":"file/src/beautifiers/beautifier.coffee.html"},{"t":"src/beautifiers/clang-format.coffee","p":"file/src/beautifiers/clang-format.coffee.html"},{"t":"src/beautifiers/coffee-fmt.coffee","p":"file/src/beautifiers/coffee-fmt.coffee.html"},{"t":"src/beautifiers/coffee-formatter.coffee","p":"file/src/beautifiers/coffee-formatter.coffee.html"},{"t":"src/beautifiers/crystal.coffee","p":"file/src/beautifiers/crystal.coffee.html"},{"t":"src/beautifiers/csscomb.coffee","p":"file/src/beautifiers/csscomb.coffee.html"},{"t":"src/beautifiers/dfmt.coffee","p":"file/src/beautifiers/dfmt.coffee.html"},{"t":"src/beautifiers/elm-format.coffee","p":"file/src/beautifiers/elm-format.coffee.html"},{"t":"src/beautifiers/erl_tidy.coffee","p":"file/src/beautifiers/erl_tidy.coffee.html"},{"t":"src/beautifiers/fortran-beautifier/index.coffee","p":"file/src/beautifiers/fortran-beautifier/index.coffee.html"},{"t":"src/beautifiers/gherkin.coffee","p":"file/src/beautifiers/gherkin.coffee.html"},{"t":"src/beautifiers/gofmt.coffee","p":"file/src/beautifiers/gofmt.coffee.html"},{"t":"src/beautifiers/htmlbeautifier.coffee","p":"file/src/beautifiers/htmlbeautifier.coffee.html"},{"t":"src/beautifiers/index.coffee","p":"file/src/beautifiers/index.coffee.html"},{"t":"src/beautifiers/js-beautify.coffee","p":"file/src/beautifiers/js-beautify.coffee.html"},{"t":"src/beautifiers/jscs.coffee","p":"file/src/beautifiers/jscs.coffee.html"},{"t":"src/beautifiers/latex-beautify.coffee","p":"file/src/beautifiers/latex-beautify.coffee.html"},{"t":"src/beautifiers/lua-beautifier/index.coffee","p":"file/src/beautifiers/lua-beautifier/index.coffee.html"},{"t":"src/beautifiers/marko-beautifier.coffee","p":"file/src/beautifiers/marko-beautifier.coffee.html"},{"t":"src/beautifiers/ocp-indent.coffee","p":"file/src/beautifiers/ocp-indent.coffee.html"},{"t":"src/beautifiers/perltidy.coffee","p":"file/src/beautifiers/perltidy.coffee.html"},{"t":"src/beautifiers/php-cs-fixer.coffee","p":"file/src/beautifiers/php-cs-fixer.coffee.html"},{"t":"src/beautifiers/phpcbf.coffee","p":"file/src/beautifiers/phpcbf.coffee.html"},{"t":"src/beautifiers/prettydiff.coffee","p":"file/src/beautifiers/prettydiff.coffee.html"},{"t":"src/beautifiers/pug-beautify.coffee","p":"file/src/beautifiers/pug-beautify.coffee.html"},{"t":"src/beautifiers/puppet-fix.coffee","p":"file/src/beautifiers/puppet-fix.coffee.html"},{"t":"src/beautifiers/remark.coffee","p":"file/src/beautifiers/remark.coffee.html"},{"t":"src/beautifiers/rubocop.coffee","p":"file/src/beautifiers/rubocop.coffee.html"},{"t":"src/beautifiers/ruby-beautify.coffee","p":"file/src/beautifiers/ruby-beautify.coffee.html"},{"t":"src/beautifiers/rustfmt.coffee","p":"file/src/beautifiers/rustfmt.coffee.html"},{"t":"src/beautifiers/sqlformat.coffee","p":"file/src/beautifiers/sqlformat.coffee.html"},{"t":"src/beautifiers/stylish-haskell.coffee","p":"file/src/beautifiers/stylish-haskell.coffee.html"},{"t":"src/beautifiers/tidy-markdown.coffee","p":"file/src/beautifiers/tidy-markdown.coffee.html"},{"t":"src/beautifiers/typescript-formatter.coffee","p":"file/src/beautifiers/typescript-formatter.coffee.html"},{"t":"src/beautifiers/uncrustify/cfg.coffee","p":"file/src/beautifiers/uncrustify/cfg.coffee.html"},{"t":"src/beautifiers/uncrustify/index.coffee","p":"file/src/beautifiers/uncrustify/index.coffee.html"},{"t":"src/beautifiers/yapf.coffee","p":"file/src/beautifiers/yapf.coffee.html"},{"t":"src/beautify.coffee","p":"file/src/beautify.coffee.html"},{"t":"src/config.coffee","p":"file/src/config.coffee.html"},{"t":"src/languages/apex.coffee","p":"file/src/languages/apex.coffee.html"},{"t":"src/languages/arduino.coffee","p":"file/src/languages/arduino.coffee.html"},{"t":"src/languages/c-sharp.coffee","p":"file/src/languages/c-sharp.coffee.html"},{"t":"src/languages/c.coffee","p":"file/src/languages/c.coffee.html"},{"t":"src/languages/coffeescript.coffee","p":"file/src/languages/coffeescript.coffee.html"},{"t":"src/languages/coldfusion.coffee","p":"file/src/languages/coldfusion.coffee.html"},{"t":"src/languages/cpp.coffee","p":"file/src/languages/cpp.coffee.html"},{"t":"src/languages/crystal.coffee","p":"file/src/languages/crystal.coffee.html"},{"t":"src/languages/css.coffee","p":"file/src/languages/css.coffee.html"},{"t":"src/languages/csv.coffee","p":"file/src/languages/csv.coffee.html"},{"t":"src/languages/d.coffee","p":"file/src/languages/d.coffee.html"},{"t":"src/languages/ejs.coffee","p":"file/src/languages/ejs.coffee.html"},{"t":"src/languages/elm.coffee","p":"file/src/languages/elm.coffee.html"},{"t":"src/languages/erb.coffee","p":"file/src/languages/erb.coffee.html"},{"t":"src/languages/erlang.coffee","p":"file/src/languages/erlang.coffee.html"},{"t":"src/languages/fortran.coffee","p":"file/src/languages/fortran.coffee.html"},{"t":"src/languages/gherkin.coffee","p":"file/src/languages/gherkin.coffee.html"},{"t":"src/languages/go.coffee","p":"file/src/languages/go.coffee.html"},{"t":"src/languages/handlebars.coffee","p":"file/src/languages/handlebars.coffee.html"},{"t":"src/languages/haskell.coffee","p":"file/src/languages/haskell.coffee.html"},{"t":"src/languages/html.coffee","p":"file/src/languages/html.coffee.html"},{"t":"src/languages/index.coffee","p":"file/src/languages/index.coffee.html"},{"t":"src/languages/jade.coffee","p":"file/src/languages/jade.coffee.html"},{"t":"src/languages/java.coffee","p":"file/src/languages/java.coffee.html"},{"t":"src/languages/javascript.coffee","p":"file/src/languages/javascript.coffee.html"},{"t":"src/languages/json.coffee","p":"file/src/languages/json.coffee.html"},{"t":"src/languages/jsx.coffee","p":"file/src/languages/jsx.coffee.html"},{"t":"src/languages/latex.coffee","p":"file/src/languages/latex.coffee.html"},{"t":"src/languages/less.coffee","p":"file/src/languages/less.coffee.html"},{"t":"src/languages/lua.coffee","p":"file/src/languages/lua.coffee.html"},{"t":"src/languages/markdown.coffee","p":"file/src/languages/markdown.coffee.html"},{"t":"src/languages/marko.coffee","p":"file/src/languages/marko.coffee.html"},{"t":"src/languages/mustache.coffee","p":"file/src/languages/mustache.coffee.html"},{"t":"src/languages/objective-c.coffee","p":"file/src/languages/objective-c.coffee.html"},{"t":"src/languages/ocaml.coffee","p":"file/src/languages/ocaml.coffee.html"},{"t":"src/languages/pawn.coffee","p":"file/src/languages/pawn.coffee.html"},{"t":"src/languages/perl.coffee","p":"file/src/languages/perl.coffee.html"},{"t":"src/languages/php.coffee","p":"file/src/languages/php.coffee.html"},{"t":"src/languages/puppet.coffee","p":"file/src/languages/puppet.coffee.html"},{"t":"src/languages/python.coffee","p":"file/src/languages/python.coffee.html"},{"t":"src/languages/riotjs.coffee","p":"file/src/languages/riotjs.coffee.html"},{"t":"src/languages/ruby.coffee","p":"file/src/languages/ruby.coffee.html"},{"t":"src/languages/rust.coffee","p":"file/src/languages/rust.coffee.html"},{"t":"src/languages/sass.coffee","p":"file/src/languages/sass.coffee.html"},{"t":"src/languages/scss.coffee","p":"file/src/languages/scss.coffee.html"},{"t":"src/languages/spacebars.coffee","p":"file/src/languages/spacebars.coffee.html"},{"t":"src/languages/sql.coffee","p":"file/src/languages/sql.coffee.html"},{"t":"src/languages/svg.coffee","p":"file/src/languages/svg.coffee.html"},{"t":"src/languages/swig.coffee","p":"file/src/languages/swig.coffee.html"},{"t":"src/languages/tss.coffee","p":"file/src/languages/tss.coffee.html"},{"t":"src/languages/twig.coffee","p":"file/src/languages/twig.coffee.html"},{"t":"src/languages/typescript.coffee","p":"file/src/languages/typescript.coffee.html"},{"t":"src/languages/vala.coffee","p":"file/src/languages/vala.coffee.html"},{"t":"src/languages/visualforce.coffee","p":"file/src/languages/visualforce.coffee.html"},{"t":"src/languages/xml.coffee","p":"file/src/languages/xml.coffee.html"},{"t":"src/languages/xtemplate.coffee","p":"file/src/languages/xtemplate.coffee.html"},{"t":"src/views/loading-view.coffee","p":"file/src/views/loading-view.coffee.html"},{"t":"src/views/message-view.coffee","p":"file/src/views/message-view.coffee.html"},{"t":"README.md","p":"extra/README.md.html"},{"t":"CHANGELOG.md","p":"extra/CHANGELOG.md.html"},{"t":"MessageView#addMessage","p":"class/MessageView.html#addMessage-dynamic"},{"t":"ErlTidy#beautify","p":"class/ErlTidy.html#beautify-dynamic"},{"t":"JSCSFixer#beautify","p":"class/JSCSFixer.html#beautify-dynamic"},{"t":"src/beautify.coffee~beautify","p":"file/src/beautify.coffee.html#beautify-"},{"t":"JSBeautify#beautify","p":"class/JSBeautify.html#beautify-dynamic"},{"t":"Rubocop#beautify","p":"class/Rubocop.html#beautify-dynamic"},{"t":"RubyBeautify#beautify","p":"class/RubyBeautify.html#beautify-dynamic"},{"t":"LatexBeautify#beautify","p":"class/LatexBeautify.html#beautify-dynamic"},{"t":"Autopep8#beautify","p":"class/Autopep8.html#beautify-dynamic"},{"t":"Lua#beautify","p":"class/Lua.html#beautify-dynamic"},{"t":"Remark#beautify","p":"class/Remark.html#beautify-dynamic"},{"t":"MarkoBeautifier#beautify","p":"class/MarkoBeautifier.html#beautify-dynamic"},{"t":"PuppetFix#beautify","p":"class/PuppetFix.html#beautify-dynamic"},{"t":"OCPIndent#beautify","p":"class/OCPIndent.html#beautify-dynamic"},{"t":"Rustfmt#beautify","p":"class/Rustfmt.html#beautify-dynamic"},{"t":"Sqlformat#beautify","p":"class/Sqlformat.html#beautify-dynamic"},{"t":"Beautifiers#beautify","p":"class/Beautifiers.html#beautify-dynamic"},{"t":"StylishHaskell#beautify","p":"class/StylishHaskell.html#beautify-dynamic"},{"t":"Yapf#beautify","p":"class/Yapf.html#beautify-dynamic"},{"t":"TidyMarkdown#beautify","p":"class/TidyMarkdown.html#beautify-dynamic"},{"t":"TypeScriptFormatter#beautify","p":"class/TypeScriptFormatter.html#beautify-dynamic"},{"t":"ClangFormat#beautify","p":"class/ClangFormat.html#beautify-dynamic"},{"t":"CoffeeFmt#beautify","p":"class/CoffeeFmt.html#beautify-dynamic"},{"t":"CoffeeFormatter#beautify","p":"class/CoffeeFormatter.html#beautify-dynamic"},{"t":"Crystal#beautify","p":"class/Crystal.html#beautify-dynamic"},{"t":"JSBeautify#beautify","p":"class/JSBeautify.html#beautify-dynamic"},{"t":"Dfmt#beautify","p":"class/Dfmt.html#beautify-dynamic"},{"t":"ElmFormat#beautify","p":"class/ElmFormat.html#beautify-dynamic"},{"t":"Uncrustify#beautify","p":"class/Uncrustify.html#beautify-dynamic"},{"t":"FortranBeautifier#beautify","p":"class/FortranBeautifier.html#beautify-dynamic"},{"t":"Gherkin#beautify","p":"class/Gherkin.html#beautify-dynamic"},{"t":"Gofmt#beautify","p":"class/Gofmt.html#beautify-dynamic"},{"t":"HTMLBeautifier#beautify","p":"class/HTMLBeautifier.html#beautify-dynamic"},{"t":"PerlTidy#beautify","p":"class/PerlTidy.html#beautify-dynamic"},{"t":"PugBeautify#beautify","p":"class/PugBeautify.html#beautify-dynamic"},{"t":"PrettyDiff#beautify","p":"class/PrettyDiff.html#beautify-dynamic"},{"t":"PHPCBF#beautify","p":"class/PHPCBF.html#beautify-dynamic"},{"t":"PHPCSFixer#beautify","p":"class/PHPCSFixer.html#beautify-dynamic"},{"t":"src/beautify.coffee~beautifyDirectory","p":"file/src/beautify.coffee.html#beautifyDirectory-"},{"t":"src/beautify.coffee~beautifyFile","p":"file/src/beautify.coffee.html#beautifyFile-"},{"t":"src/beautify.coffee~beautifyFilePath","p":"file/src/beautify.coffee.html#beautifyFilePath-"},{"t":"LatexBeautify#buildConfigFile","p":"class/LatexBeautify.html#buildConfigFile-dynamic"},{"t":"MessageView#clearMessages","p":"class/MessageView.html#clearMessages-dynamic"},{"t":"PuppetFix#cli","p":"class/PuppetFix.html#cli-dynamic"},{"t":"PerlTidy#cli","p":"class/PerlTidy.html#cli-dynamic"},{"t":"MessageView#close","p":"class/MessageView.html#close-dynamic"},{"t":"Beautifier#commandNotFoundError","p":"class/Beautifier.html#commandNotFoundError-dynamic"},{"t":"MessageView#constructor","p":"class/MessageView.html#constructor-dynamic"},{"t":"Beautifier#constructor","p":"class/Beautifier.html#constructor-dynamic"},{"t":"Beautifiers#constructor","p":"class/Beautifiers.html#constructor-dynamic"},{"t":"MessageView.content","p":"class/MessageView.html#content-static"},{"t":"LoadingView.content","p":"class/LoadingView.html#content-static"},{"t":"src/beautify.coffee~debug","p":"file/src/beautify.coffee.html#debug-"},{"t":"Beautifier#deprecate","p":"class/Beautifier.html#deprecate-dynamic"},{"t":"MessageView#destroy","p":"class/MessageView.html#destroy-dynamic"},{"t":"ClangFormat#dumpToFile","p":"class/ClangFormat.html#dumpToFile-dynamic"},{"t":"Beautifiers#encodeURI","p":"class/Beautifiers.html#encodeURI-dynamic"},{"t":"Beautifiers#findConfig","p":"class/Beautifiers.html#findConfig-dynamic"},{"t":"Beautifiers#findFile","p":"class/Beautifiers.html#findFile-dynamic"},{"t":"Beautifier#findFile","p":"class/Beautifier.html#findFile-dynamic"},{"t":"Beautifiers#getBeautifierForLanguage","p":"class/Beautifiers.html#getBeautifierForLanguage-dynamic"},{"t":"Beautifiers#getBeautifiers","p":"class/Beautifiers.html#getBeautifiers-dynamic"},{"t":"Beautifiers#getConfig","p":"class/Beautifiers.html#getConfig-dynamic"},{"t":"Beautifiers#getConfigOptionsFromSettings","p":"class/Beautifiers.html#getConfigOptionsFromSettings-dynamic"},{"t":"src/beautify.coffee~getCursors","p":"file/src/beautify.coffee.html#getCursors-"},{"t":"Beautifiers#getLanguage","p":"class/Beautifiers.html#getLanguage-dynamic"},{"t":"Beautifiers#getOptions","p":"class/Beautifiers.html#getOptions-dynamic"},{"t":"Beautifiers#getOptionsForLanguage","p":"class/Beautifiers.html#getOptionsForLanguage-dynamic"},{"t":"Beautifiers#getOptionsForPath","p":"class/Beautifiers.html#getOptionsForPath-dynamic"},{"t":"src/beautify.coffee~getScrollTop","p":"file/src/beautify.coffee.html#getScrollTop-"},{"t":"Beautifier#getShellEnvironment","p":"class/Beautifier.html#getShellEnvironment-dynamic"},{"t":"Beautifiers#getUserHome","p":"class/Beautifiers.html#getUserHome-dynamic"},{"t":"LoadingView#hide","p":"class/LoadingView.html#hide-dynamic"},{"t":"Beautifiers#isNestedOptions","p":"class/Beautifiers.html#isNestedOptions-dynamic"},{"t":"Beautifier#readFile","p":"class/Beautifier.html#readFile-dynamic"},{"t":"MessageView#refresh","p":"class/MessageView.html#refresh-dynamic"},{"t":"Beautifier#run","p":"class/Beautifier.html#run-dynamic"},{"t":"src/beautify.coffee~setCursors","p":"file/src/beautify.coffee.html#setCursors-"},{"t":"src/beautify.coffee~setScrollTop","p":"file/src/beautify.coffee.html#setScrollTop-"},{"t":"LatexBeautify#setUpDir","p":"class/LatexBeautify.html#setUpDir-dynamic"},{"t":"Beautifier#setupLogger","p":"class/Beautifier.html#setupLogger-dynamic"},{"t":"MessageView#show","p":"class/MessageView.html#show-dynamic"},{"t":"LoadingView#show","p":"class/LoadingView.html#show-dynamic"},{"t":"src/beautify.coffee~showError","p":"file/src/beautify.coffee.html#showError-"},{"t":"Beautifier#spawn","p":"class/Beautifier.html#spawn-dynamic"},{"t":"Beautifier#tempFile","p":"class/Beautifier.html#tempFile-dynamic"},{"t":"Beautifiers#track","p":"class/Beautifiers.html#track-dynamic"},{"t":"Beautifiers#trackEvent","p":"class/Beautifiers.html#trackEvent-dynamic"},{"t":"Beautifiers#trackTiming","p":"class/Beautifiers.html#trackTiming-dynamic"},{"t":"Beautifiers#transformOptions","p":"class/Beautifiers.html#transformOptions-dynamic"},{"t":"Beautifiers#verifyExists","p":"class/Beautifiers.html#verifyExists-dynamic"},{"t":"Beautifier#which","p":"class/Beautifier.html#which-dynamic"}]
\ No newline at end of file
+window.searchData = [{"t":"Autopep8","p":"class/Autopep8.html"},{"t":"Beautifier","p":"class/Beautifier.html"},{"t":"ClangFormat","p":"class/ClangFormat.html"},{"t":"CoffeeFmt","p":"class/CoffeeFmt.html"},{"t":"CoffeeFormatter","p":"class/CoffeeFormatter.html"},{"t":"Crystal","p":"class/Crystal.html"},{"t":"JSBeautify","p":"class/JSBeautify.html"},{"t":"Dfmt","p":"class/Dfmt.html"},{"t":"ElmFormat","p":"class/ElmFormat.html"},{"t":"ErlTidy","p":"class/ErlTidy.html"},{"t":"R","p":"class/R.html"},{"t":"FortranBeautifier","p":"class/FortranBeautifier.html"},{"t":"Gherkin","p":"class/Gherkin.html"},{"t":"Gofmt","p":"class/Gofmt.html"},{"t":"HTMLBeautifier","p":"class/HTMLBeautifier.html"},{"t":"Beautifiers","p":"class/Beautifiers.html"},{"t":"JSBeautify","p":"class/JSBeautify.html"},{"t":"JSCSFixer","p":"class/JSCSFixer.html"},{"t":"LatexBeautify","p":"class/LatexBeautify.html"},{"t":"Lua","p":"class/Lua.html"},{"t":"MarkoBeautifier","p":"class/MarkoBeautifier.html"},{"t":"OCPIndent","p":"class/OCPIndent.html"},{"t":"PerlTidy","p":"class/PerlTidy.html"},{"t":"PHPCSFixer","p":"class/PHPCSFixer.html"},{"t":"PHPCBF","p":"class/PHPCBF.html"},{"t":"PrettyDiff","p":"class/PrettyDiff.html"},{"t":"PugBeautify","p":"class/PugBeautify.html"},{"t":"PuppetFix","p":"class/PuppetFix.html"},{"t":"Remark","p":"class/Remark.html"},{"t":"Rubocop","p":"class/Rubocop.html"},{"t":"RubyBeautify","p":"class/RubyBeautify.html"},{"t":"Rustfmt","p":"class/Rustfmt.html"},{"t":"SassConvert","p":"class/SassConvert.html"},{"t":"Sqlformat","p":"class/Sqlformat.html"},{"t":"StylishHaskell","p":"class/StylishHaskell.html"},{"t":"TidyMarkdown","p":"class/TidyMarkdown.html"},{"t":"TypeScriptFormatter","p":"class/TypeScriptFormatter.html"},{"t":"Uncrustify","p":"class/Uncrustify.html"},{"t":"VueBeautifier","p":"class/VueBeautifier.html"},{"t":"Yapf","p":"class/Yapf.html"},{"t":"LoadingView","p":"class/LoadingView.html"},{"t":"MessageView","p":"class/MessageView.html"},{"t":"src/beautifiers/autopep8.coffee","p":"file/src/beautifiers/autopep8.coffee.html"},{"t":"src/beautifiers/beautifier.coffee","p":"file/src/beautifiers/beautifier.coffee.html"},{"t":"src/beautifiers/clang-format.coffee","p":"file/src/beautifiers/clang-format.coffee.html"},{"t":"src/beautifiers/coffee-fmt.coffee","p":"file/src/beautifiers/coffee-fmt.coffee.html"},{"t":"src/beautifiers/coffee-formatter.coffee","p":"file/src/beautifiers/coffee-formatter.coffee.html"},{"t":"src/beautifiers/crystal.coffee","p":"file/src/beautifiers/crystal.coffee.html"},{"t":"src/beautifiers/csscomb.coffee","p":"file/src/beautifiers/csscomb.coffee.html"},{"t":"src/beautifiers/dfmt.coffee","p":"file/src/beautifiers/dfmt.coffee.html"},{"t":"src/beautifiers/elm-format.coffee","p":"file/src/beautifiers/elm-format.coffee.html"},{"t":"src/beautifiers/erl_tidy.coffee","p":"file/src/beautifiers/erl_tidy.coffee.html"},{"t":"src/beautifiers/formatR/index.coffee","p":"file/src/beautifiers/formatR/index.coffee.html"},{"t":"src/beautifiers/fortran-beautifier/index.coffee","p":"file/src/beautifiers/fortran-beautifier/index.coffee.html"},{"t":"src/beautifiers/gherkin.coffee","p":"file/src/beautifiers/gherkin.coffee.html"},{"t":"src/beautifiers/gofmt.coffee","p":"file/src/beautifiers/gofmt.coffee.html"},{"t":"src/beautifiers/htmlbeautifier.coffee","p":"file/src/beautifiers/htmlbeautifier.coffee.html"},{"t":"src/beautifiers/index.coffee","p":"file/src/beautifiers/index.coffee.html"},{"t":"src/beautifiers/js-beautify.coffee","p":"file/src/beautifiers/js-beautify.coffee.html"},{"t":"src/beautifiers/jscs.coffee","p":"file/src/beautifiers/jscs.coffee.html"},{"t":"src/beautifiers/latex-beautify.coffee","p":"file/src/beautifiers/latex-beautify.coffee.html"},{"t":"src/beautifiers/lua-beautifier/index.coffee","p":"file/src/beautifiers/lua-beautifier/index.coffee.html"},{"t":"src/beautifiers/marko-beautifier.coffee","p":"file/src/beautifiers/marko-beautifier.coffee.html"},{"t":"src/beautifiers/ocp-indent.coffee","p":"file/src/beautifiers/ocp-indent.coffee.html"},{"t":"src/beautifiers/perltidy.coffee","p":"file/src/beautifiers/perltidy.coffee.html"},{"t":"src/beautifiers/php-cs-fixer.coffee","p":"file/src/beautifiers/php-cs-fixer.coffee.html"},{"t":"src/beautifiers/phpcbf.coffee","p":"file/src/beautifiers/phpcbf.coffee.html"},{"t":"src/beautifiers/prettydiff.coffee","p":"file/src/beautifiers/prettydiff.coffee.html"},{"t":"src/beautifiers/pug-beautify.coffee","p":"file/src/beautifiers/pug-beautify.coffee.html"},{"t":"src/beautifiers/puppet-fix.coffee","p":"file/src/beautifiers/puppet-fix.coffee.html"},{"t":"src/beautifiers/remark.coffee","p":"file/src/beautifiers/remark.coffee.html"},{"t":"src/beautifiers/rubocop.coffee","p":"file/src/beautifiers/rubocop.coffee.html"},{"t":"src/beautifiers/ruby-beautify.coffee","p":"file/src/beautifiers/ruby-beautify.coffee.html"},{"t":"src/beautifiers/rustfmt.coffee","p":"file/src/beautifiers/rustfmt.coffee.html"},{"t":"src/beautifiers/sass-convert.coffee","p":"file/src/beautifiers/sass-convert.coffee.html"},{"t":"src/beautifiers/sqlformat.coffee","p":"file/src/beautifiers/sqlformat.coffee.html"},{"t":"src/beautifiers/stylish-haskell.coffee","p":"file/src/beautifiers/stylish-haskell.coffee.html"},{"t":"src/beautifiers/tidy-markdown.coffee","p":"file/src/beautifiers/tidy-markdown.coffee.html"},{"t":"src/beautifiers/typescript-formatter.coffee","p":"file/src/beautifiers/typescript-formatter.coffee.html"},{"t":"src/beautifiers/uncrustify/cfg.coffee","p":"file/src/beautifiers/uncrustify/cfg.coffee.html"},{"t":"src/beautifiers/uncrustify/index.coffee","p":"file/src/beautifiers/uncrustify/index.coffee.html"},{"t":"src/beautifiers/vue-beautifier.coffee","p":"file/src/beautifiers/vue-beautifier.coffee.html"},{"t":"src/beautifiers/yapf.coffee","p":"file/src/beautifiers/yapf.coffee.html"},{"t":"src/beautify.coffee","p":"file/src/beautify.coffee.html"},{"t":"src/config.coffee","p":"file/src/config.coffee.html"},{"t":"src/languages/apex.coffee","p":"file/src/languages/apex.coffee.html"},{"t":"src/languages/arduino.coffee","p":"file/src/languages/arduino.coffee.html"},{"t":"src/languages/c-sharp.coffee","p":"file/src/languages/c-sharp.coffee.html"},{"t":"src/languages/c.coffee","p":"file/src/languages/c.coffee.html"},{"t":"src/languages/coffeescript.coffee","p":"file/src/languages/coffeescript.coffee.html"},{"t":"src/languages/coldfusion.coffee","p":"file/src/languages/coldfusion.coffee.html"},{"t":"src/languages/cpp.coffee","p":"file/src/languages/cpp.coffee.html"},{"t":"src/languages/crystal.coffee","p":"file/src/languages/crystal.coffee.html"},{"t":"src/languages/css.coffee","p":"file/src/languages/css.coffee.html"},{"t":"src/languages/csv.coffee","p":"file/src/languages/csv.coffee.html"},{"t":"src/languages/d.coffee","p":"file/src/languages/d.coffee.html"},{"t":"src/languages/ejs.coffee","p":"file/src/languages/ejs.coffee.html"},{"t":"src/languages/elm.coffee","p":"file/src/languages/elm.coffee.html"},{"t":"src/languages/erb.coffee","p":"file/src/languages/erb.coffee.html"},{"t":"src/languages/erlang.coffee","p":"file/src/languages/erlang.coffee.html"},{"t":"src/languages/fortran.coffee","p":"file/src/languages/fortran.coffee.html"},{"t":"src/languages/gherkin.coffee","p":"file/src/languages/gherkin.coffee.html"},{"t":"src/languages/go.coffee","p":"file/src/languages/go.coffee.html"},{"t":"src/languages/handlebars.coffee","p":"file/src/languages/handlebars.coffee.html"},{"t":"src/languages/haskell.coffee","p":"file/src/languages/haskell.coffee.html"},{"t":"src/languages/html.coffee","p":"file/src/languages/html.coffee.html"},{"t":"src/languages/index.coffee","p":"file/src/languages/index.coffee.html"},{"t":"src/languages/jade.coffee","p":"file/src/languages/jade.coffee.html"},{"t":"src/languages/java.coffee","p":"file/src/languages/java.coffee.html"},{"t":"src/languages/javascript.coffee","p":"file/src/languages/javascript.coffee.html"},{"t":"src/languages/json.coffee","p":"file/src/languages/json.coffee.html"},{"t":"src/languages/jsx.coffee","p":"file/src/languages/jsx.coffee.html"},{"t":"src/languages/latex.coffee","p":"file/src/languages/latex.coffee.html"},{"t":"src/languages/less.coffee","p":"file/src/languages/less.coffee.html"},{"t":"src/languages/lua.coffee","p":"file/src/languages/lua.coffee.html"},{"t":"src/languages/markdown.coffee","p":"file/src/languages/markdown.coffee.html"},{"t":"src/languages/marko.coffee","p":"file/src/languages/marko.coffee.html"},{"t":"src/languages/mustache.coffee","p":"file/src/languages/mustache.coffee.html"},{"t":"src/languages/nunjucks.coffee","p":"file/src/languages/nunjucks.coffee.html"},{"t":"src/languages/objective-c.coffee","p":"file/src/languages/objective-c.coffee.html"},{"t":"src/languages/ocaml.coffee","p":"file/src/languages/ocaml.coffee.html"},{"t":"src/languages/pawn.coffee","p":"file/src/languages/pawn.coffee.html"},{"t":"src/languages/perl.coffee","p":"file/src/languages/perl.coffee.html"},{"t":"src/languages/php.coffee","p":"file/src/languages/php.coffee.html"},{"t":"src/languages/puppet.coffee","p":"file/src/languages/puppet.coffee.html"},{"t":"src/languages/python.coffee","p":"file/src/languages/python.coffee.html"},{"t":"src/languages/r.coffee","p":"file/src/languages/r.coffee.html"},{"t":"src/languages/riotjs.coffee","p":"file/src/languages/riotjs.coffee.html"},{"t":"src/languages/ruby.coffee","p":"file/src/languages/ruby.coffee.html"},{"t":"src/languages/rust.coffee","p":"file/src/languages/rust.coffee.html"},{"t":"src/languages/sass.coffee","p":"file/src/languages/sass.coffee.html"},{"t":"src/languages/scss.coffee","p":"file/src/languages/scss.coffee.html"},{"t":"src/languages/spacebars.coffee","p":"file/src/languages/spacebars.coffee.html"},{"t":"src/languages/sql.coffee","p":"file/src/languages/sql.coffee.html"},{"t":"src/languages/svg.coffee","p":"file/src/languages/svg.coffee.html"},{"t":"src/languages/swig.coffee","p":"file/src/languages/swig.coffee.html"},{"t":"src/languages/tss.coffee","p":"file/src/languages/tss.coffee.html"},{"t":"src/languages/twig.coffee","p":"file/src/languages/twig.coffee.html"},{"t":"src/languages/typescript.coffee","p":"file/src/languages/typescript.coffee.html"},{"t":"src/languages/vala.coffee","p":"file/src/languages/vala.coffee.html"},{"t":"src/languages/visualforce.coffee","p":"file/src/languages/visualforce.coffee.html"},{"t":"src/languages/vue.coffee","p":"file/src/languages/vue.coffee.html"},{"t":"src/languages/xml.coffee","p":"file/src/languages/xml.coffee.html"},{"t":"src/languages/xtemplate.coffee","p":"file/src/languages/xtemplate.coffee.html"},{"t":"src/views/loading-view.coffee","p":"file/src/views/loading-view.coffee.html"},{"t":"src/views/message-view.coffee","p":"file/src/views/message-view.coffee.html"},{"t":"README.md","p":"extra/README.md.html"},{"t":"CHANGELOG.md","p":"extra/CHANGELOG.md.html"},{"t":"MessageView#addMessage","p":"class/MessageView.html#addMessage-dynamic"},{"t":"Gofmt#beautify","p":"class/Gofmt.html#beautify-dynamic"},{"t":"OCPIndent#beautify","p":"class/OCPIndent.html#beautify-dynamic"},{"t":"src/beautify.coffee~beautify","p":"file/src/beautify.coffee.html#beautify-"},{"t":"MarkoBeautifier#beautify","p":"class/MarkoBeautifier.html#beautify-dynamic"},{"t":"Lua#beautify","p":"class/Lua.html#beautify-dynamic"},{"t":"LatexBeautify#beautify","p":"class/LatexBeautify.html#beautify-dynamic"},{"t":"Rustfmt#beautify","p":"class/Rustfmt.html#beautify-dynamic"},{"t":"Autopep8#beautify","p":"class/Autopep8.html#beautify-dynamic"},{"t":"JSCSFixer#beautify","p":"class/JSCSFixer.html#beautify-dynamic"},{"t":"RubyBeautify#beautify","p":"class/RubyBeautify.html#beautify-dynamic"},{"t":"JSBeautify#beautify","p":"class/JSBeautify.html#beautify-dynamic"},{"t":"PHPCSFixer#beautify","p":"class/PHPCSFixer.html#beautify-dynamic"},{"t":"Rubocop#beautify","p":"class/Rubocop.html#beautify-dynamic"},{"t":"SassConvert#beautify","p":"class/SassConvert.html#beautify-dynamic"},{"t":"PHPCBF#beautify","p":"class/PHPCBF.html#beautify-dynamic"},{"t":"PrettyDiff#beautify","p":"class/PrettyDiff.html#beautify-dynamic"},{"t":"PugBeautify#beautify","p":"class/PugBeautify.html#beautify-dynamic"},{"t":"Yapf#beautify","p":"class/Yapf.html#beautify-dynamic"},{"t":"Sqlformat#beautify","p":"class/Sqlformat.html#beautify-dynamic"},{"t":"StylishHaskell#beautify","p":"class/StylishHaskell.html#beautify-dynamic"},{"t":"ClangFormat#beautify","p":"class/ClangFormat.html#beautify-dynamic"},{"t":"CoffeeFmt#beautify","p":"class/CoffeeFmt.html#beautify-dynamic"},{"t":"CoffeeFormatter#beautify","p":"class/CoffeeFormatter.html#beautify-dynamic"},{"t":"Crystal#beautify","p":"class/Crystal.html#beautify-dynamic"},{"t":"JSBeautify#beautify","p":"class/JSBeautify.html#beautify-dynamic"},{"t":"Dfmt#beautify","p":"class/Dfmt.html#beautify-dynamic"},{"t":"ElmFormat#beautify","p":"class/ElmFormat.html#beautify-dynamic"},{"t":"ErlTidy#beautify","p":"class/ErlTidy.html#beautify-dynamic"},{"t":"R#beautify","p":"class/R.html#beautify-dynamic"},{"t":"FortranBeautifier#beautify","p":"class/FortranBeautifier.html#beautify-dynamic"},{"t":"Gherkin#beautify","p":"class/Gherkin.html#beautify-dynamic"},{"t":"Beautifiers#beautify","p":"class/Beautifiers.html#beautify-dynamic"},{"t":"HTMLBeautifier#beautify","p":"class/HTMLBeautifier.html#beautify-dynamic"},{"t":"TidyMarkdown#beautify","p":"class/TidyMarkdown.html#beautify-dynamic"},{"t":"TypeScriptFormatter#beautify","p":"class/TypeScriptFormatter.html#beautify-dynamic"},{"t":"Remark#beautify","p":"class/Remark.html#beautify-dynamic"},{"t":"Uncrustify#beautify","p":"class/Uncrustify.html#beautify-dynamic"},{"t":"PuppetFix#beautify","p":"class/PuppetFix.html#beautify-dynamic"},{"t":"VueBeautifier#beautify","p":"class/VueBeautifier.html#beautify-dynamic"},{"t":"PerlTidy#beautify","p":"class/PerlTidy.html#beautify-dynamic"},{"t":"src/beautify.coffee~beautifyDirectory","p":"file/src/beautify.coffee.html#beautifyDirectory-"},{"t":"src/beautify.coffee~beautifyFile","p":"file/src/beautify.coffee.html#beautifyFile-"},{"t":"src/beautify.coffee~beautifyFilePath","p":"file/src/beautify.coffee.html#beautifyFilePath-"},{"t":"LatexBeautify#buildConfigFile","p":"class/LatexBeautify.html#buildConfigFile-dynamic"},{"t":"MessageView#clearMessages","p":"class/MessageView.html#clearMessages-dynamic"},{"t":"PerlTidy#cli","p":"class/PerlTidy.html#cli-dynamic"},{"t":"PuppetFix#cli","p":"class/PuppetFix.html#cli-dynamic"},{"t":"MessageView#close","p":"class/MessageView.html#close-dynamic"},{"t":"Beautifier#commandNotFoundError","p":"class/Beautifier.html#commandNotFoundError-dynamic"},{"t":"MessageView#constructor","p":"class/MessageView.html#constructor-dynamic"},{"t":"Beautifier#constructor","p":"class/Beautifier.html#constructor-dynamic"},{"t":"Beautifiers#constructor","p":"class/Beautifiers.html#constructor-dynamic"},{"t":"MessageView.content","p":"class/MessageView.html#content-static"},{"t":"LoadingView.content","p":"class/LoadingView.html#content-static"},{"t":"src/beautify.coffee~debug","p":"file/src/beautify.coffee.html#debug-"},{"t":"Beautifier#deprecate","p":"class/Beautifier.html#deprecate-dynamic"},{"t":"MessageView#destroy","p":"class/MessageView.html#destroy-dynamic"},{"t":"ClangFormat#dumpToFile","p":"class/ClangFormat.html#dumpToFile-dynamic"},{"t":"Beautifiers#encodeURI","p":"class/Beautifiers.html#encodeURI-dynamic"},{"t":"Beautifiers#findConfig","p":"class/Beautifiers.html#findConfig-dynamic"},{"t":"Beautifier#findFile","p":"class/Beautifier.html#findFile-dynamic"},{"t":"Beautifiers#findFile","p":"class/Beautifiers.html#findFile-dynamic"},{"t":"Beautifiers#getBeautifierForLanguage","p":"class/Beautifiers.html#getBeautifierForLanguage-dynamic"},{"t":"Beautifiers#getBeautifiers","p":"class/Beautifiers.html#getBeautifiers-dynamic"},{"t":"Beautifiers#getConfig","p":"class/Beautifiers.html#getConfig-dynamic"},{"t":"Beautifiers#getConfigOptionsFromSettings","p":"class/Beautifiers.html#getConfigOptionsFromSettings-dynamic"},{"t":"src/beautify.coffee~getCursors","p":"file/src/beautify.coffee.html#getCursors-"},{"t":"Beautifiers#getLanguage","p":"class/Beautifiers.html#getLanguage-dynamic"},{"t":"Beautifiers#getOptions","p":"class/Beautifiers.html#getOptions-dynamic"},{"t":"Beautifiers#getOptionsForLanguage","p":"class/Beautifiers.html#getOptionsForLanguage-dynamic"},{"t":"Beautifiers#getOptionsForPath","p":"class/Beautifiers.html#getOptionsForPath-dynamic"},{"t":"src/beautify.coffee~getScrollTop","p":"file/src/beautify.coffee.html#getScrollTop-"},{"t":"Beautifier#getShellEnvironment","p":"class/Beautifier.html#getShellEnvironment-dynamic"},{"t":"Beautifiers#getUserHome","p":"class/Beautifiers.html#getUserHome-dynamic"},{"t":"LoadingView#hide","p":"class/LoadingView.html#hide-dynamic"},{"t":"Beautifiers#isNestedOptions","p":"class/Beautifiers.html#isNestedOptions-dynamic"},{"t":"Beautifier#readFile","p":"class/Beautifier.html#readFile-dynamic"},{"t":"MessageView#refresh","p":"class/MessageView.html#refresh-dynamic"},{"t":"Beautifier#run","p":"class/Beautifier.html#run-dynamic"},{"t":"src/beautify.coffee~setCursors","p":"file/src/beautify.coffee.html#setCursors-"},{"t":"src/beautify.coffee~setScrollTop","p":"file/src/beautify.coffee.html#setScrollTop-"},{"t":"LatexBeautify#setUpDir","p":"class/LatexBeautify.html#setUpDir-dynamic"},{"t":"Beautifier#setupLogger","p":"class/Beautifier.html#setupLogger-dynamic"},{"t":"MessageView#show","p":"class/MessageView.html#show-dynamic"},{"t":"LoadingView#show","p":"class/LoadingView.html#show-dynamic"},{"t":"src/beautify.coffee~showError","p":"file/src/beautify.coffee.html#showError-"},{"t":"Beautifier#spawn","p":"class/Beautifier.html#spawn-dynamic"},{"t":"Beautifier#tempFile","p":"class/Beautifier.html#tempFile-dynamic"},{"t":"Beautifiers#track","p":"class/Beautifiers.html#track-dynamic"},{"t":"Beautifiers#trackEvent","p":"class/Beautifiers.html#trackEvent-dynamic"},{"t":"Beautifiers#trackTiming","p":"class/Beautifiers.html#trackTiming-dynamic"},{"t":"Beautifiers#transformOptions","p":"class/Beautifiers.html#transformOptions-dynamic"},{"t":"Beautifiers#verifyExists","p":"class/Beautifiers.html#verifyExists-dynamic"},{"t":"Beautifier#which","p":"class/Beautifier.html#which-dynamic"}]
\ No newline at end of file
diff --git a/docs/code/method_list.html b/docs/code/method_list.html
index 528fd06..f81a410 100644
--- a/docs/code/method_list.html
+++ b/docs/code/method_list.html
@@ -38,99 +38,11 @@
-
+
#beautify
- (ErlTidy)
-
-
-
-
- #beautify
-
-
- (JSCSFixer)
-
-
-
-
- ~beautify
-
-
- (src/beautify.coffee)
-
-
-
-
- #beautify
-
-
- (JSBeautify)
-
-
-
-
- #beautify
-
-
- (Rubocop)
-
-
-
-
- #beautify
-
-
- (RubyBeautify)
-
-
-
-
- #beautify
-
-
- (LatexBeautify)
-
-
-
-
- #beautify
-
-
- (Autopep8)
-
-
-
-
- #beautify
-
-
- (Lua)
-
-
-
-
- #beautify
-
-
- (Remark)
-
-
-
-
- #beautify
-
-
- (MarkoBeautifier)
-
-
-
-
- #beautify
-
-
- (PuppetFix)
+ (Gofmt)
@@ -141,6 +53,38 @@
(OCPIndent)
+
+
+ ~beautify
+
+
+ (src/beautify.coffee)
+
+
+
+
+ #beautify
+
+
+ (MarkoBeautifier)
+
+
+
+
+ #beautify
+
+
+ (Lua)
+
+
+
+
+ #beautify
+
+
+ (LatexBeautify)
+
+
#beautify
@@ -150,27 +94,83 @@
-
+
#beautify
- (Sqlformat)
+ (Autopep8)
-
+
#beautify
- (Beautifiers)
+ (JSCSFixer)
-
+
#beautify
- (StylishHaskell)
+ (RubyBeautify)
+
+
+
+
+ #beautify
+
+
+ (JSBeautify)
+
+
+
+
+ #beautify
+
+
+ (PHPCSFixer)
+
+
+
+
+ #beautify
+
+
+ (Rubocop)
+
+
+
+
+ #beautify
+
+
+ (SassConvert)
+
+
+
+
+ #beautify
+
+
+ (PHPCBF)
+
+
+
+
+ #beautify
+
+
+ (PrettyDiff)
+
+
+
+
+ #beautify
+
+
+ (PugBeautify)
@@ -182,19 +182,19 @@
-
+
#beautify
- (TidyMarkdown)
+ (Sqlformat)
-
+
#beautify
- (TypeScriptFormatter)
+ (StylishHaskell)
@@ -254,11 +254,19 @@
-
+
#beautify
- (Uncrustify)
+ (ErlTidy)
+
+
+
+
+ #beautify
+
+
+ (R)
@@ -278,11 +286,11 @@
-
+
#beautify
- (Gofmt)
+ (Beautifiers)
@@ -293,6 +301,54 @@
(HTMLBeautifier)
+
+
+ #beautify
+
+
+ (TidyMarkdown)
+
+
+
+
+ #beautify
+
+
+ (TypeScriptFormatter)
+
+
+
+
+ #beautify
+
+
+ (Remark)
+
+
+
+
+ #beautify
+
+
+ (Uncrustify)
+
+
+
+
+ #beautify
+
+
+ (PuppetFix)
+
+
+
+
+ #beautify
+
+
+ (VueBeautifier)
+
+
#beautify
@@ -301,38 +357,6 @@
(PerlTidy)
-
-
- #beautify
-
-
- (PugBeautify)
-
-
-
-
- #beautify
-
-
- (PrettyDiff)
-
-
-
-
- #beautify
-
-
- (PHPCBF)
-
-
-
-
- #beautify
-
-
- (PHPCSFixer)
-
-
~beautifyDirectory
@@ -373,14 +397,6 @@
(MessageView)
-
-
- #cli
-
-
- (PuppetFix)
-
-
#cli
@@ -389,6 +405,14 @@
(PerlTidy)
+
+
+ #cli
+
+
+ (PuppetFix)
+
+
#close
@@ -493,14 +517,6 @@
(Beautifiers)
-
-
- #findFile
-
-
- (Beautifiers)
-
-
#findFile
@@ -509,6 +525,14 @@
(Beautifier)
+
+
+ #findFile
+
+
+ (Beautifiers)
+
+
#getBeautifierForLanguage
diff --git a/docs/options.md b/docs/options.md
index 9742236..4f6ef2f 100644
--- a/docs/options.md
+++ b/docs/options.md
@@ -7451,6 +7451,183 @@ Maximum characters per line (0 disables) (Supported by JS Beautify)
}
```
+#### [Nunjucks](#nunjucks)
+
+**Supported Beautifiers**: [`Pretty Diff`](#pretty-diff)
+
+| Option | Pretty Diff |
+| --- | --- |
+| `disabled` | :white_check_mark: |
+| `default_beautifier` | :white_check_mark: |
+| `beautify_on_save` | :white_check_mark: |
+| `indent_char` | :white_check_mark: |
+| `indent_size` | :white_check_mark: |
+| `preserve_newlines` | :white_check_mark: |
+| `wrap_line_length` | :white_check_mark: |
+
+**Description**:
+
+Options for language Nunjucks
+
+##### [Disable Beautifying Language](#disable-beautifying-language)
+
+**Important**: This option is only configurable from within Atom Beautify's setting panel.
+
+**Type**: `boolean`
+
+**Description**:
+
+Disable Nunjucks Beautification
+
+**How to Configure**
+
+1. You can open the [Settings View](https://github.com/atom/settings-view) by navigating to
+*Edit > Preferences (Linux)*, *Atom > Preferences (OS X)*, or *File > Preferences (Windows)*.
+2. Go into *Packages* and search for "*Atom Beautify*" package.
+3. Find the option "*Disable Beautifying Language*" and change it to your desired configuration.
+
+##### [Default Beautifier](#default-beautifier)
+
+**Important**: This option is only configurable from within Atom Beautify's setting panel.
+
+**Default**: `Pretty Diff`
+
+**Type**: `string`
+
+**Enum**: `Pretty Diff`
+
+**Description**:
+
+Default Beautifier to be used for Nunjucks
+
+**How to Configure**
+
+1. You can open the [Settings View](https://github.com/atom/settings-view) by navigating to
+*Edit > Preferences (Linux)*, *Atom > Preferences (OS X)*, or *File > Preferences (Windows)*.
+2. Go into *Packages* and search for "*Atom Beautify*" package.
+3. Find the option "*Default Beautifier*" and change it to your desired configuration.
+
+##### [Beautify On Save](#beautify-on-save)
+
+**Important**: This option is only configurable from within Atom Beautify's setting panel.
+
+**Type**: `boolean`
+
+**Description**:
+
+Automatically beautify Nunjucks files on save
+
+**How to Configure**
+
+1. You can open the [Settings View](https://github.com/atom/settings-view) by navigating to
+*Edit > Preferences (Linux)*, *Atom > Preferences (OS X)*, or *File > Preferences (Windows)*.
+2. Go into *Packages* and search for "*Atom Beautify*" package.
+3. Find the option "*Beautify On Save*" and change it to your desired configuration.
+
+##### [Indent char](#indent-char)
+
+**Namespace**: `html`
+
+**Key**: `indent_char`
+
+**Default**: ` `
+
+**Type**: `string`
+
+**Supported Beautifiers**: [`Pretty Diff`](#pretty-diff)
+
+**Description**:
+
+Indentation character (Supported by Pretty Diff)
+
+**Example `.jsbeautifyrc` Configuration**
+
+```json
+{
+ "html": {
+ "indent_char": " "
+ }
+}
+```
+
+##### [Indent size](#indent-size)
+
+**Namespace**: `html`
+
+**Key**: `indent_size`
+
+**Default**: `4`
+
+**Type**: `integer`
+
+**Supported Beautifiers**: [`Pretty Diff`](#pretty-diff)
+
+**Description**:
+
+Indentation size/length (Supported by Pretty Diff)
+
+**Example `.jsbeautifyrc` Configuration**
+
+```json
+{
+ "html": {
+ "indent_size": 4
+ }
+}
+```
+
+##### [Preserve newlines](#preserve-newlines)
+
+**Namespace**: `html`
+
+**Key**: `preserve_newlines`
+
+**Default**: `true`
+
+**Type**: `boolean`
+
+**Supported Beautifiers**: [`Pretty Diff`](#pretty-diff)
+
+**Description**:
+
+Preserve line-breaks (Supported by Pretty Diff)
+
+**Example `.jsbeautifyrc` Configuration**
+
+```json
+{
+ "html": {
+ "preserve_newlines": true
+ }
+}
+```
+
+##### [Wrap line length](#wrap-line-length)
+
+**Namespace**: `html`
+
+**Key**: `wrap_line_length`
+
+**Default**: `250`
+
+**Type**: `integer`
+
+**Supported Beautifiers**: [`Pretty Diff`](#pretty-diff)
+
+**Description**:
+
+Maximum characters per line (0 disables) (Supported by Pretty Diff)
+
+**Example `.jsbeautifyrc` Configuration**
+
+```json
+{
+ "html": {
+ "wrap_line_length": 250
+ }
+}
+```
+
#### [Objective-C](#objective-c)
**Supported Beautifiers**: [`Uncrustify`](#uncrustify) [`clang-format`](#clang-format)
diff --git a/package.json b/package.json
index d13912d..c4b6447 100644
--- a/package.json
+++ b/package.json
@@ -270,7 +270,8 @@
"vue",
"vue beautifier",
"sassconvert",
- "formatr"
+ "formatr",
+ "nunjucks"
],
"devDependencies": {
"coffeelint": "^1.10.1",
@@ -283,4 +284,4 @@
"lint": "coffeelint src/ spec/",
"code-docs": "codo && open docs/code/index.html"
}
-}
+}
\ No newline at end of file