Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kt474/tailwind-converter
Convert plain HTML/CSS into tailwind
https://github.com/kt474/tailwind-converter
converter css nextjs tailwind tailwindcss
Last synced: 23 days ago
JSON representation
Convert plain HTML/CSS into tailwind
- Host: GitHub
- URL: https://github.com/kt474/tailwind-converter
- Owner: kt474
- License: mit
- Created: 2022-05-01T04:27:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-11T01:22:32.000Z (4 months ago)
- Last Synced: 2024-09-11T06:10:57.218Z (4 months ago)
- Topics: converter, css, nextjs, tailwind, tailwindcss
- Language: TypeScript
- Homepage: https://tailwindconverter.app
- Size: 976 KB
- Stars: 48
- Watchers: 4
- Forks: 8
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
- Support: SupportedClasses.md
Awesome Lists containing this project
README
# Tailwind Converter
The goal of this project is to take plain HTML/CSS and convert it to a
single HTML file with [Tailwind](https://tailwindcss.com/) classes. Tracking supported
Tailwind classes [here](SupportedClasses.md).**Note: This project is a work in progress. There may be bugs or incomplete features.**
It's also important to keep in mind that converting an existing project to use Tailwind CSS often involves more than just replacing classes. It may be best to restructure your HTML and/or adjust your design to fit the utility-first paradigm and match the available utility classes. Manual conversion would provide more control over the process and likely ensure a better end result.
## Run Locally
Clone the repo, install the dependencies and run:
```bash
npm run dev
# or
yarn dev
```Running [tests](test)
```bash
npm test
```## TODO
- Better test coverage - test entire app and prevent crashes from invalid text
- Handle multiple css filter classes
- Support active states (hover, focus)
- Support css nesting instead of just top level css classes