Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Unified Diff: lib/src/html_renderer.dart

Issue 1274753003: Allow resolving links that contain inline syntax. (Closed) Base URL: https://github.com/dart-lang/markdown.git@master
Patch Set: Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/inline_parser.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/src/html_renderer.dart
diff --git a/lib/src/html_renderer.dart b/lib/src/html_renderer.dart
index b2d96e765adf4a63613b7b2067369d98cf112727..835c178075cf16c1cd1089d9821895589e52ff14 100644
--- a/lib/src/html_renderer.dart
+++ b/lib/src/html_renderer.dart
@@ -60,8 +60,6 @@ class HtmlRenderer implements NodeVisitor {
buffer.write('<${element.tag}');
// Sort the keys so that we generate stable output.
- // TODO(rnystrom): This assumes keys returns a fresh mutable
- // collection.
final attributeNames = element.attributes.keys.toList();
attributeNames.sort((a, b) => a.compareTo(b));
for (final name in attributeNames) {
« no previous file with comments | « CHANGELOG.md ('k') | lib/src/inline_parser.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698