Skip to content

Commit 38895dd

Browse files
committed
remove commented code
1 parent 5aebd24 commit 38895dd

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

lib/markdown_processor.dart

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,6 @@ class _InlineCodeSyntax extends md.InlineSyntax {
9898
@override
9999
bool onMatch(md.InlineParser parser, Match match) {
100100
var element = new md.Element.text('code', htmlEscape(match[1]));
101-
// var c = element.attributes.putIfAbsent("class", () => "");
102-
// c = (c.isEmpty ? "" : " ") + "prettyprint";
103-
// element.attributes["class"] = c;
104101
parser.addNode(element);
105102
return true;
106103
}

0 commit comments

Comments
 (0)