├── .gitignore ├── CHANGELOG.txt ├── Default.sublime-commands ├── LICENSE.txt ├── README.md ├── customfilters.py ├── filterpipes.py └── filters.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/CHANGELOG.txt -------------------------------------------------------------------------------- /Default.sublime-commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/Default.sublime-commands -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/README.md -------------------------------------------------------------------------------- /customfilters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/customfilters.py -------------------------------------------------------------------------------- /filterpipes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/filterpipes.py -------------------------------------------------------------------------------- /filters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylerl/FilterPipes/HEAD/filters.py --------------------------------------------------------------------------------