The include plugin is a external plugin that permits to compose a page with the content of another page.
By default, the include plugin (ie section syntax) will not work with ComboStrap.
You need to disable the combo wiki heading component to enable it.
Why?: It does not work because the include plugin uses the standard Dokuwiki heading to be able to extract the content.
The include plugin permits adding the content of a section with the following syntax.
{{section>reference#section&nodate&inline&noeditbtn}}
where:
If your page has a template with a main header, the heading 1 is captured to not show the title twice.
If you need to include an heading 1 in a Combostrap page, see this comment
It's because Dokuwiki store it when the heading is disabled.
public function header($text, $level, $pos)
{
if (!isset($this->meta['title'])) {
$this->meta['title'] = $text;
}
...
}
The include plugin does not always return a clean HTML. The browser will then make a best guess and the included parts may land in another region of the template.
See the issue 91 for the whole explanation.