highlight 0.1.0 highlight: ^0.1.0 copied to clipboard
Dart syntax highlighter with lots of languages and styles, zero dependencies and automatic language detection.
example/highlight_example.dart
import 'package:highlight/highlight.dart';
main() {
var input = '''main() {
print("Hello, World!");
}
''';
var h = Highlight();
var result = h.parse(input);
result.toHtml();
}