Lines Matching defs:markupPath
94 private ?MarkupPath $markupPath = null;
107 $this->markupPath = $markup;
117 * @param MarkupPath|null $markupPath - needed to store the parsed toc, h1, ... (null if the markup is dynamic)
121 public static function createFromCallStack(CallStack $callStack, MarkupPath $markupPath = null, bool $isFragment = false): Outline
123 return new Outline($callStack, $markupPath, $isFragment);
623 public static function createFromMarkupPath(MarkupPath $markupPath): Outline
625 $path = $markupPath->getPathObject();
634 return new Outline($callStack, $markupPath);
835 if ($this->markupPath != null && $outlineSection->getLevel() === 1) {
842 PageH1::createForPage($this->markupPath)->setDefaultValue($label);
866 if (!isset($this->markupPath)) {
871 Toc::createForPage($this->markupPath)
882 return $this->markupPath;
905 if ($this->markupPath !== null) {
906 $contextPath = $this->markupPath->getPathObject()->toWikiPath();