fixed bug in parser where bold text on single line was parsed as list

master
Michael Ochmann 3 years ago
parent 39307e24e9
commit 1aa376d6ec
  1. 4
      src/Parser.php

@ -511,6 +511,10 @@ class Parser {
while ($this->current()->type !== TokenType::EOF) { while ($this->current()->type !== TokenType::EOF) {
switch($this->current()->type) { switch($this->current()->type) {
case TokenType::ASTERISK: case TokenType::ASTERISK:
if ($this->next()->type === TokenType::ASTERISK) {
$this->buildParagraph($this->parseText(true));
break;
}
$list = $this->parseList(); $list = $this->parseList();
$this->document->appendChild($list); $this->document->appendChild($list);
break; break;

Loading…
Cancel
Save