Fix beautifiers info table in README. See #1525

This commit is contained in:
Glavin Wiechert 2017-04-10 02:55:56 -03:00
parent ba2198675c
commit c40a5a4b5a
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ See [`unibeautify` branch](../../tree/unibeautify) for work in progress and [Iss
Some of the supported beautifiers are developed for Node.js and are automatically installed when Atom-Beautify is installed. However, other beautifiers are command-line interface (CLI) applications and require you to manually install them.
| Beautifier | Is Pre-Installed? | Installation Instructions |
| --- | --- | --- | ---- |
| --- | --- | --- |
| autopep8 | :x: | Go to https://github.com/hhatto/autopep8 and follow the instructions. |
| beautysh | :x: | Go to https://github.com/bemeurer/beautysh and follow the instructions. |
| clang-format | :x: | Go to https://clang.llvm.org/docs/ClangFormat.html and follow the instructions. |

View File

@ -169,7 +169,7 @@ Handlebars.registerHelper('beautifiers-info', (beautifiers, options) ->
)
results = """
| Beautifier | Is Pre-Installed? | Installation Instructions |
| --- | --- | --- | ---- |
| --- | --- | --- |
#{rows.join('\n')}
"""
return new Handlebars.SafeString(results)