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

Unified Diff: dart/pkg/dartdoc/lib/markdown.dart

Issue 11233061: Revert "Parts must start with 'part of'" and "Attempt to fix VM build" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 years, 2 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 | « dart/pkg/dartdoc/lib/dartdoc.dart ('k') | dart/pkg/dartdoc/lib/mirrors.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/pkg/dartdoc/lib/markdown.dart
diff --git a/dart/pkg/dartdoc/lib/markdown.dart b/dart/pkg/dartdoc/lib/markdown.dart
index 8a3bd559456f77c97f24d7661807203b99fd986d..b58b1fd0dbc24799af0280cd0ebd85ce91375921 100644
--- a/dart/pkg/dartdoc/lib/markdown.dart
+++ b/dart/pkg/dartdoc/lib/markdown.dart
@@ -3,13 +3,13 @@
// BSD-style license that can be found in the LICENSE file.
/// Parses text in a markdown-like format and renders to HTML.
-library markdown;
+#library('markdown');
// TODO(rnystrom): Use "package:" URL (#4968).
-part 'src/markdown/ast.dart';
-part 'src/markdown/block_parser.dart';
-part 'src/markdown/html_renderer.dart';
-part 'src/markdown/inline_parser.dart';
+#source('src/markdown/ast.dart');
+#source('src/markdown/block_parser.dart');
+#source('src/markdown/html_renderer.dart');
+#source('src/markdown/inline_parser.dart');
/// Converts the given string of markdown to HTML.
String markdownToHtml(String markdown) {
« no previous file with comments | « dart/pkg/dartdoc/lib/dartdoc.dart ('k') | dart/pkg/dartdoc/lib/mirrors.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698