WEBSITE IS NOW LIVE: https://cssbattleminifier.pythonanywhere.com/
This Python script performs a few functions to intelligently minify your code for the online code golfing game CSSBattle.dev
- removes all elements that are comments
- removes last set of lines:
- final closing curly bracket "}"
- closing style tag "</style>"
- removes last semicolon inside each class
- removes all whitespaces in between valid punctuation
- removes units for width and height (EG: width: 100px -> width: 100)
- removes all newlines