We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08417ec commit 77196e0Copy full SHA for 77196e0
lib/src/single_line_comments/parser/single_line_comments.dart
@@ -6,6 +6,7 @@ import 'package:highlight/languages/php.dart';
6
import 'package:highlight/languages/python.dart';
7
import 'package:highlight/languages/scala.dart';
8
import 'package:highlight/languages/vhdl.dart';
9
+import 'package:highlight/languages/yaml.dart';
10
11
class SingleLineComments {
12
const SingleLineComments._();
@@ -18,6 +19,7 @@ class SingleLineComments {
18
19
python: [_hash],
20
scala: [_slashes],
21
vhdl: [_hyphenMinuses],
22
+ yaml: [_hash],
23
};
24
25
static const _slashes = '//';
0 commit comments