highlight 0.2.0 highlight: ^0.2.0 copied to clipboard
Dart syntax highlighter with lots of languages and styles support. Zero dependencies, automatic language detection.
example/highlight_example.dart
import 'package:highlight/highlight.dart' show Highlight;
main() {
var input = '''main() {
print("Hello, World!");
}
''';
// Create a syntax highlight instance
var hl = Highlight();
// Parse input code and returns a highlight [Result] which contains relevance and tree nodes
var result = hl.parse(input, language: 'dart');
// Output HTML string, which has highlight.js style class name, hljs-
var html = result.toHtml();
print(html);
}