Skip to content

3.0.4

Choose a tag to compare

@domenic domenic released this 28 Aug 15:35
· 79 commits to main since this release

Fixed several bugs regarding paragraph break parsing:

  • Parsing fragments that contained paragraph breaks would only emit the first paragraph. Now all paragraphs are joined with a space, i.e., the \n\n is collapsed into .
  • Parsing documents with leading whitespace would cause odd behavior.
  • Parsing documents that contain paragraph breaks would concatenate them all into a single paragraph. Now they properly split as separate paragraphs. (However, we still don't have full "Markdown-style" paragraph processing, in that if you start a line with a HTML tag, it will still always be wrapped in a paragraph.)