| OLD | NEW |
| 1 part of markdown; | |
| 2 | |
| 3 // 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 |
| 4 // 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 |
| 5 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 6 | 4 |
| 7 /// The line contains only whitespace or is empty. | 5 /// The line contains only whitespace or is empty. |
| 8 const _RE_EMPTY = const RegExp(r'^([ \t]*)$'); | 6 const _RE_EMPTY = const RegExp(r'^([ \t]*)$'); |
| 9 | 7 |
| 10 /// A series of `=` or `-` (on the next line) define setext-style headers. | 8 /// A series of `=` or `-` (on the next line) define setext-style headers. |
| 11 const _RE_SETEXT = const RegExp(r'^((=+)|(-+))$'); | 9 const _RE_SETEXT = const RegExp(r'^((=+)|(-+))$'); |
| 12 | 10 |
| (...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 429 while (!BlockSyntax.isAtBlockEnd(parser)) { | 427 while (!BlockSyntax.isAtBlockEnd(parser)) { |
| 430 childLines.add(parser.current); | 428 childLines.add(parser.current); |
| 431 parser.advance(); | 429 parser.advance(); |
| 432 } | 430 } |
| 433 | 431 |
| 434 final contents = parser.document.parseInline( | 432 final contents = parser.document.parseInline( |
| 435 Strings.join(childLines, '\n')); | 433 Strings.join(childLines, '\n')); |
| 436 return new Element('p', contents); | 434 return new Element('p', contents); |
| 437 } | 435 } |
| 438 } | 436 } |
| OLD | NEW |