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

Side by Side Diff: client/web/markdown.dart

Issue 11636011: Web components based app to view dart docs. Still has rough edges. (Closed) Base URL: https://github.com/dart-lang/dart-api-app.git@master
Patch Set: more fixes Created 7 years, 11 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 unified diff | Download patch
« no previous file with comments | « client/web/index.html ('k') | client/web/model.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Parses text in a markdown-like format and renders to HTML. 5 /// Parses text in a markdown-like format and renders to HTML.
6 library markdown; 6 library markdown;
7 7
8 // TODO(rnystrom): Use "package:" URL (#4968). 8 // TODO(rnystrom): Use "package:" URL (#4968).
9 part 'src/markdown/ast.dart'; 9 part 'src/markdown/ast.dart';
10 part 'src/markdown/block_parser.dart'; 10 part 'src/markdown/block_parser.dart';
11 part 'src/markdown/html_renderer.dart'; 11 part 'src/markdown/html_renderer.dart';
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 /// `<em>this <strong>is</strong> a</em> <code>markdown</code>`. 106 /// `<em>this <strong>is</strong> a</em> <code>markdown</code>`.
107 List<Node> parseInline(String text) => new InlineParser(text, this).parse(); 107 List<Node> parseInline(String text) => new InlineParser(text, this).parse();
108 } 108 }
109 109
110 class Link { 110 class Link {
111 final String id; 111 final String id;
112 final String url; 112 final String url;
113 final String title; 113 final String title;
114 Link(this.id, this.url, this.title); 114 Link(this.id, this.url, this.title);
115 } 115 }
OLDNEW
« no previous file with comments | « client/web/index.html ('k') | client/web/model.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698