diff options
| author | Javier <jlopezcur@gmail.com> | 2022-08-11 17:45:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-11 17:45:19 +0200 |
| commit | 66f602d44563887eb2a984b579aaae443045b412 (patch) | |
| tree | 69b5cf18cbdbf64d99e6f8b50dc28d2ed2f959a1 /lua/mason-registry/xmlformatter/init.lua | |
| parent | chore: update generated code (#283) (diff) | |
| download | mason-66f602d44563887eb2a984b579aaae443045b412.tar mason-66f602d44563887eb2a984b579aaae443045b412.tar.gz mason-66f602d44563887eb2a984b579aaae443045b412.tar.bz2 mason-66f602d44563887eb2a984b579aaae443045b412.tar.lz mason-66f602d44563887eb2a984b579aaae443045b412.tar.xz mason-66f602d44563887eb2a984b579aaae443045b412.tar.zst mason-66f602d44563887eb2a984b579aaae443045b412.zip | |
feat: add xmlformatter (#281)
Diffstat (limited to 'lua/mason-registry/xmlformatter/init.lua')
| -rw-r--r-- | lua/mason-registry/xmlformatter/init.lua | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lua/mason-registry/xmlformatter/init.lua b/lua/mason-registry/xmlformatter/init.lua new file mode 100644 index 00000000..9a8e0285 --- /dev/null +++ b/lua/mason-registry/xmlformatter/init.lua @@ -0,0 +1,17 @@ +local Pkg = require "mason-core.package" +local pip3 = require "mason-core.managers.pip3" +local _ = require "mason-core.functional" + +return Pkg.new { + name = "xmlformatter", + desc = _.dedent [[ + xmlformatter is an Open Source Python package that provides formatting of XML documents. xmlformatter differs + from others formatters by handling whitespaces by a distinct set of formatting rules - formatting element + content by an object style and mixed content by a text style. You may find xmlformatter useful for corrections + and presentations. + ]], + homepage = "https://github.com/pamoller/xmlformatter", + languages = { Pkg.Lang.XML }, + categories = { Pkg.Cat.Formatter }, + install = pip3.packages { "xmlformatter", bin = { "xmlformat" } }, +} |
