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 5aebd24 commit 38895ddCopy full SHA for 38895dd
lib/markdown_processor.dart
@@ -98,9 +98,6 @@ class _InlineCodeSyntax extends md.InlineSyntax {
98
@override
99
bool onMatch(md.InlineParser parser, Match match) {
100
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;
104
parser.addNode(element);
105
return true;
106
}
0 commit comments