apply method

  1. @override
Future<String> apply(
  1. String content,
  2. Map<String, dynamic> context
)
override

Implementation

@override
Future<String> apply(String content, Map<String, dynamic> context) async {
  // This directive is handled by the loop directives
  // For now, just remove the directive
  return content.replaceAll(_breakRegex, '');
}