From c40a5a4b5ad908e4cab3d1fb97b34ed44865797a Mon Sep 17 00:00:00 2001 From: Glavin Wiechert Date: Mon, 10 Apr 2017 02:55:56 -0300 Subject: [PATCH] Fix beautifiers info table in README. See #1525 --- README.md | 2 +- docs/index.coffee | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f74d4a7..d3235ee 100644 --- a/README.md +++ b/README.md @@ -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. | diff --git a/docs/index.coffee b/docs/index.coffee index 482fc0f..80539b9 100755 --- a/docs/index.coffee +++ b/docs/index.coffee @@ -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)