[TYPO3-RTE] my text is not underlined

Darko Jr. Gonzalez jkokino at gmail.com
Sun Jan 20 14:09:56 CET 2008


>
> > > I entered RTE.default.showButtons = * in Page TSConfig for one
> > > particular page and the editor showed me all the buttons. But I cant
> get
> > > to underline my text. I actually select it, hit CTRL+U, it is
> > > underlined, but then the <u></u> tag is stripped in the frontend and
> > > this text is not underlined. I am puzzled why bolding or making the
> same
> > > text italic works, and when I try to underline it, it doesnt work. I
> > > dont see anything in my CSS either that could be stopping it from
> being
> > > underlined..
> > >
> > The u tag is stripped out on the way to the database, because
> > deprecated, by the default processing options. You will need to add it
> > to RTE.default.proc.allowTags:
> >
> > RTE.default.proc.allowTags := addToList(u)
> >
> > Maybe you also need to reset (check the result by viewing Page TSConfig
> > in Web > Info > Page TSConfig > RTE):
> > RTE.default.proc.entryHTMLparser_db.allowTags := addToList(u)
> >
> I have this in my root page TSConfig:
> RTE.default{
>  defaultLinkTarget = _self
>  removeTags = center, font, o:p, sdfield, strike
>  showButtons := addToList(underline)
>  proc{
>  allowTags := addToList(u)
>  entryHTMLparser_db.allowTags := addToList(u)
>  }
> }
>
> It is not working. What else?
>
> O have TYPO3 4.1.1 => rtehtmlarea 1.5.2
MySQL 4.1


More information about the TYPO3-project-rte mailing list