| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |