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

Side by Side Diff: client/web/src/markdown/inline_parser.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/src/markdown/html_renderer.dart ('k') | client/web/static/class.png » ('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 part of markdown; 5 part of markdown;
6 6
7 /// Maintains the internal state needed to parse inline span elements in 7 /// Maintains the internal state needed to parse inline span elements in
8 /// markdown. 8 /// markdown.
9 class InlineParser { 9 class InlineParser {
10 static List<InlineSyntax> get syntaxes { 10 static List<InlineSyntax> get syntaxes {
11 // Lazy initialize. 11 // Lazy initialize.
(...skipping 389 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 parser.consume(endMatch[0].length); 401 parser.consume(endMatch[0].length);
402 } else { 402 } else {
403 // Didn't close correctly so revert to text. 403 // Didn't close correctly so revert to text.
404 parser.start = startPos; 404 parser.start = startPos;
405 parser.advanceBy(endMatch[0].length); 405 parser.advanceBy(endMatch[0].length);
406 } 406 }
407 407
408 return null; 408 return null;
409 } 409 }
410 } 410 }
OLDNEW
« no previous file with comments | « client/web/src/markdown/html_renderer.dart ('k') | client/web/static/class.png » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698