27. 06. 2012, 10:40

Ich möchte folgendes in den HTML Code beim RTE reinschreiben <div id="box">Inhalt</div> Jedoch löscht er mir immer das id="box" raus. Und dann steht da nur <div> Meine RTE Config sieht so aus:

  1. RTE.default.proc {
  2.  
  3. # Überschreibe CSS Angaben aus dem TypoScript
  4. overruleMode = ts_css
  5.  
  6. # tags die erlaubt / verboten sind
  7. allowTags = font, size, fontsize, table, tbody, tr, th, td, h1, h2, h3, h4, h5, h6, div, p, br, span, ul, ol, li, re, blockquote, strong, em, b, i, u, sub, sup, strike, a, img, nobr, hr, tt, q, cite, abbr, acronym, center, bgcolor, bg, color, underline
  8. denyTags =
  9.  
  10. # br wird nicht zu p konvertiert
  11. dontConvBRtoParagraph = 1
  12.  
  13. # Tags die ausserhalb von p, div erlaubt sind
  14. allowTagsOutside = img,hr,center
  15.  
  16. # Erlaubte Attribute in p, div Tags
  17. keepPDIVattribs = class,style,id
  18. }

Weißt da vllt. jemand weiter?