contao-content-api-bundle icon indicating copy to clipboard operation
contao-content-api-bundle copied to clipboard

HTML-Extension are ignored

Open tobiaskahl opened this issue 6 years ago • 1 comments

If you add other extensions which manipulate the html (concrete: the bootstrap grid https://contao-bootstrap.de) the rendered html in the output json does not include these manipulations.

Via CMS: <div class="mod_article first last block" id="article-1"><div class="ce_bs_gridStart first row"><div class="col-8"><div class="ce_text block"><p>Text</p>

Via API: <div class=\"mod_article block\" id=\"article-1\"><div class=\"ce_text block\"><p>Text</p>

tobiaskahl avatar Nov 07 '18 14:11 tobiaskahl

The loading order is determined in ContaoManager/Plugin.php

->setLoadAfter(['Contao\CoreBundle\ContaoCoreBundle']),

Not really sure how to tell BundleConfig to "load after everything else" …

saibotd avatar Jun 13 '19 07:06 saibotd