dart_prism 0.2.1 dart_prism: ^0.2.1 copied to clipboard
A syntax highlighting library written in Dart, ported from PrismJS.
example/dart_prism_example.dart
import 'package:dart_prism/dart_prism.dart';
void main() {
final prism = Prism();
// Output a series of AST nodes.
final nodes = prism.parse('const name = "dart"', 'dart');
// Output an HTML string.
final html = nodes.toHtml();
print(html);
}