i'm writing a extension for TYPO3 with extbase and fluid. Herein I want to show an image-map. The problem with that is, that the fluid engine wraps my <map>-tag with all its <area>-tags in double-quotes and outputs them within a <p>-tag.
<map></map>
becomes
<p class="bodytext"> <map></p>
<p class="bodytext"> </map></p>
i allready tried wrapping it within the following view-helpers
<f:format.{raw,html,...}>
<![CDATA[]]>
does anyone had this problem before?
Edit:
<f:layout name="Default" />
This Template is responsible for creating a table of domain objects. If
you modify this template, do not forget to change the overwrite settings
in /Configuration/ExtensionBuilder/settings.yaml: Resources: Private:
Templates: List.html: keep Otherwise your changes will be overwritten
the next time you save the extension in the extension builder
<f:section name="main">
<f:image src="{f:uri.resource(path:'Images/Basemap.png')}"
alt="Basemap" class="map" id="map" usemap="#StateLocations" />
<table id="test"></table>
<f:format.raw>
<div id="themap"></div>
</f:format.raw>
<f:flashMessages />
<f:format.raw>
<map></map>
</f:format.raw>
</f:section>
Edit2:
<div class="tx-myext">
<f:render section="main" />
</div>