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 102a4a5 commit 5b001faCopy full SHA for 5b001fa
lib/src/single_line_comments/parser/single_line_comments.dart
@@ -8,6 +8,7 @@ import 'package:highlight/languages/python.dart';
8
import 'package:highlight/languages/scala.dart';
9
import 'package:highlight/languages/typescript.dart';
10
import 'package:highlight/languages/vhdl.dart';
11
+import 'package:highlight/languages/yaml.dart';
12
13
class SingleLineComments {
14
const SingleLineComments._();
@@ -22,6 +23,7 @@ class SingleLineComments {
22
23
vhdl: [_hyphenMinuses],
24
typescript: [_slashes],
25
javascript: [_slashes],
26
+ yaml: [_hash],
27
};
28
29
static const _slashes = '//';
0 commit comments