cssinline 1.0.1 cssinline: ^1.0.1 copied to clipboard
Project to provide helpful handlers to embed CSS styles into HTML elements style attribute.
import 'dart:io';
import 'package:cssinline/cssinline.dart';
void main() {
final files = Directory('.')
.listSync(recursive: true)
.where((e) => e.path.endsWith('.html'))
.cast<File>();
HTMLHandle().inlineCss(files);
}