Fix automatic table of contents, fixes #421
Cette révision appartient à :
Parent
e5c7747884
révision
be6438aca5
@ -113,6 +113,8 @@ class Processor implements DocumentProcessorInterface
|
||||
}
|
||||
|
||||
/**
|
||||
* Make a tree of the list of headings
|
||||
*
|
||||
* @param Entry[] $headings
|
||||
* @return RootEntry
|
||||
*/
|
||||
@ -125,7 +127,7 @@ class Processor implements DocumentProcessorInterface
|
||||
$parent = $previous;
|
||||
do {
|
||||
$parent = $parent->getParent();
|
||||
} while ($heading->getLevel() <= $parent->getLevel() || $parent->getLevel() != 0);
|
||||
} while ($heading->getLevel() <= $parent->getLevel() && $parent->getLevel() != 0);
|
||||
|
||||
$parent->addChild($heading);
|
||||
$previous = $heading;
|
||||
|
Chargement…
Référencer dans un nouveau ticket
Block a user