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

Side by Side Diff: pkg/dartdoc/lib/src/markdown/block_parser.dart

Issue 11339056: Cleanup run on DartDoc from Dart Editor. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 1 month 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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;
6
5 /// The line contains only whitespace or is empty. 7 /// The line contains only whitespace or is empty.
6 const _RE_EMPTY = const RegExp(r'^([ \t]*)$'); 8 const _RE_EMPTY = const RegExp(r'^([ \t]*)$');
7 9
8 /// A series of `=` or `-` (on the next line) define setext-style headers. 10 /// A series of `=` or `-` (on the next line) define setext-style headers.
9 const _RE_SETEXT = const RegExp(r'^((=+)|(-+))$'); 11 const _RE_SETEXT = const RegExp(r'^((=+)|(-+))$');
10 12
11 /// Leading (and trailing) `#` define atx-style headers. 13 /// Leading (and trailing) `#` define atx-style headers.
12 const _RE_HEADER = const RegExp(r'^(#{1,6})(.*?)#*$'); 14 const _RE_HEADER = const RegExp(r'^(#{1,6})(.*?)#*$');
13 15
14 /// The line starts with `>` with one optional space after. 16 /// The line starts with `>` with one optional space after.
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 while (!BlockSyntax.isAtBlockEnd(parser)) { 429 while (!BlockSyntax.isAtBlockEnd(parser)) {
428 childLines.add(parser.current); 430 childLines.add(parser.current);
429 parser.advance(); 431 parser.advance();
430 } 432 }
431 433
432 final contents = parser.document.parseInline( 434 final contents = parser.document.parseInline(
433 Strings.join(childLines, '\n')); 435 Strings.join(childLines, '\n'));
434 return new Element('p', contents); 436 return new Element('p', contents);
435 } 437 }
436 } 438 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698