FLUTTER ECOSYSTEM

pd4d10/highlight.dart

Dart 및 Flutter에 대한 구문 강조

highlight.dart 프로젝트 이미지
Stars
258
Forks
102
최근 푸시(UTC)
2026. 3. 30.
프로젝트 상태
활성
Rongjian Zhang GitHub avatar
GITHUB User

Rongjian Zhang ↗

UTC+8
언어Dart

기술 주제

원본 README

아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.

README 펼치기 / 접기

highlight.dart

A faithful Dart port of highlight.js — syntax highlighting for 192 languages with 257 themes.

Packages

Package Description
highlight Core Dart package — parsing engine, 192 languages, HTML output
flutter_highlight Flutter widget — HighlightView with 257 themes and line numbers

Quick Start

Dart
import 'package:highlight/highlight.dart';

void main() {
  ensureInitialized();
  final result = hljs.highlight('print("hello")', language: 'python');
  print(result.toHtml());
}
Flutter
import 'package:flutter_highlight/flutter_highlight.dart';
import 'package:flutter_highlight/themes/github.dart';
import 'package:highlight/highlight.dart';

HighlightView(
  sourceCode,
  language: 'python',
  theme: githubTheme,
  showLineNumbers: true,
)

Changelog Generation

This repo uses conventional-commit style subjects, so changelog sections can be generated from git history per package:

dart run tool/generate_changelog.dart \
  --package highlight \
  --version 0.7.1 \
  --from v0.7.0

Add --write to update the package CHANGELOG.md in place:

dart run tool/generate_changelog.dart \
  --package flutter_highlight \
  --version 0.7.1 \
  --from v0.7.0 \
  --write

Pub Score Checks

CI validates the publishable package quality gates with pana plus pub publish --dry-run. Run the same score checks locally with:

dart pub global activate pana 0.23.12
dart run tool/check_pub_score.dart