├── .gitignore ├── README.md └── Scripts ├── Append to Lines....sh ├── Delete Lines Containing....sh ├── Keep Lines Containing....sh ├── Prepend to Lines....sh ├── Quote.sh ├── Tidy JSON (node).sh ├── Tidy JSON (python).sh └── Tidy XML.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/Append to Lines....sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Append to Lines....sh -------------------------------------------------------------------------------- /Scripts/Delete Lines Containing....sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Delete Lines Containing....sh -------------------------------------------------------------------------------- /Scripts/Keep Lines Containing....sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Keep Lines Containing....sh -------------------------------------------------------------------------------- /Scripts/Prepend to Lines....sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Prepend to Lines....sh -------------------------------------------------------------------------------- /Scripts/Quote.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Quote.sh -------------------------------------------------------------------------------- /Scripts/Tidy JSON (node).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Tidy JSON (node).sh -------------------------------------------------------------------------------- /Scripts/Tidy JSON (python).sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Tidy JSON (python).sh -------------------------------------------------------------------------------- /Scripts/Tidy XML.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playerofgames/CotEditor-Scripts/HEAD/Scripts/Tidy XML.sh --------------------------------------------------------------------------------