Skip to content
This repository has been archived by the owner on Oct 19, 2022. It is now read-only.

Latest commit

 

History

History
47 lines (33 loc) · 1.36 KB

README.md

File metadata and controls

47 lines (33 loc) · 1.36 KB

DEPRECATED

I didn't end up finding a use for this 🤷


Build Status Azure DevOps coverage pre-commit.ci status

css-explore

This originally started as a tool to visualize the parse tree of a css document, but more or less turned into a pretty printer.

The reason I made this project was to compare compilation outputs of various implementations of scss in an effort to switch a codebase from one compiler to another.

This uses:

Usage

$ css-format --help
usage: css-format [-h] filename

positional arguments:
  filename

optional arguments:
  -h, --help  show this help message and exit

Example run:

$ echo 'body{color:red}' > test.css
$ css-format test.css
body {
    color: red;
}