We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a1a168 commit 3eadc9eCopy full SHA for 3eadc9e
lib/kara.dart
@@ -2,6 +2,19 @@
2
// Use of this source code is governed by a BSD-style license that can be found
3
// in LICENSE or at https://opensource.org/license/BSD-3-clause.
4
5
+/// KARA (karaoke caption format) parser library.
6
+/// More info about KARA: https://github.com/libkara
7
+///
8
+/// # Parsing KARA file
9
+/// ```dart
10
+/// import 'dart:io';
11
+/// import 'package:kara/kara.dart';
12
13
+/// Future<void> main() async {
14
+/// final karaFile = await File('example.kara');
15
+/// parse(karaFile);
16
+/// }
17
+/// ```
18
library kara;
19
20
import 'package:kara/src/exception.dart';
0 commit comments