├── .gitignore ├── Makefile ├── README.md ├── TextMate └── Sparkup.tmbundle │ ├── Commands │ └── Sparkup expand.tmCommand │ ├── Support │ └── sparkup.py │ └── info.plist ├── ftdetect └── hsb.vim ├── ftplugin ├── mit-license.txt ├── sparkup-unittest.py ├── sparkup.py └── vim ├── README.txt └── ftplugin ├── html ├── sparkup.py └── sparkup.vim ├── htmldjango ├── smarty └── xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/README.md -------------------------------------------------------------------------------- /TextMate/Sparkup.tmbundle/Commands/Sparkup expand.tmCommand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/TextMate/Sparkup.tmbundle/Commands/Sparkup expand.tmCommand -------------------------------------------------------------------------------- /TextMate/Sparkup.tmbundle/Support/sparkup.py: -------------------------------------------------------------------------------- 1 | ../../../sparkup.py -------------------------------------------------------------------------------- /TextMate/Sparkup.tmbundle/info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/TextMate/Sparkup.tmbundle/info.plist -------------------------------------------------------------------------------- /ftdetect/hsb.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/ftdetect/hsb.vim -------------------------------------------------------------------------------- /ftplugin: -------------------------------------------------------------------------------- 1 | vim/ftplugin -------------------------------------------------------------------------------- /mit-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/mit-license.txt -------------------------------------------------------------------------------- /sparkup-unittest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/sparkup-unittest.py -------------------------------------------------------------------------------- /sparkup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/sparkup.py -------------------------------------------------------------------------------- /vim/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/vim/README.txt -------------------------------------------------------------------------------- /vim/ftplugin/html/sparkup.py: -------------------------------------------------------------------------------- 1 | ../../../sparkup.py -------------------------------------------------------------------------------- /vim/ftplugin/html/sparkup.vim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rstacruz/sparkup/HEAD/vim/ftplugin/html/sparkup.vim -------------------------------------------------------------------------------- /vim/ftplugin/htmldjango: -------------------------------------------------------------------------------- 1 | html -------------------------------------------------------------------------------- /vim/ftplugin/smarty: -------------------------------------------------------------------------------- 1 | html -------------------------------------------------------------------------------- /vim/ftplugin/xml: -------------------------------------------------------------------------------- 1 | html --------------------------------------------------------------------------------