Home
last modified time | relevance | path

Searched refs:headingLevel (Results 1 – 3 of 3) sorted by last modified time

/plugin/latexport/implementation/
H A Dinternal_link.php23 private $headingLevel; variable in InternalLink
28 * @param headingLevel The heading level in which the link was found.
31 function __construct($link, $headingLevel, $title = null) { argument
33 if ($headingLevel < 2) {
34 $this->headingLevel = 2;
36 $this->headingLevel = $headingLevel;
52 return $this->headingLevel;
56 return "$this->title ($this->headingLevel) --- $this->link";
H A Ddecorator_includer.php37 private $headingLevel = 0; variable in DecoratorIncluder
70 $this->headingLevel = 0;
87 $this->headingLevel = $level;
259 $this->internalLinkToInclude = new InternalLink($link, $this->headingLevel, $title);
/plugin/latexport/renderer/
H A Dtex.php43 private $headingLevel; variable in renderer_plugin_latexport_tex
62 $this->headingLevel = 0;
130 $this->decorator->header($text, $level + $this->headingLevel, $pos);
154 $this->headingLevel = $include->getHeadingLevel();