red-perfume / red-perfume-html

Atomizes the classes defined in HTML
https://red-perfume.github.io
MIT License
2 stars 0 forks source link

Handle Qualifying Elements (HTML) #6

Open TheJaredWilcurt opened 2 years ago

TheJaredWilcurt commented 2 years ago
h1.example {
  display: block;
  text-align: center;
}

should become

h1.rp__display__--COLONblock {
  display: block;
}
h1.rp__text-align__--COLONcenter {
  text-align: center;
}

or if uglified

h1.rp__0 {
  display: block;
}
h1.rp__1 {
  text-align: center;
}
TheJaredWilcurt commented 2 years ago

Work already done in this repo. Waiting on this to be added into red-perfume-css.