Compose tips
Eingabeformate:
- Eingeschränktes HTML:
- Check and correct HTML before is stored in database. This parser strips down all potentially dangerous content within HTML: opening tag without its closing tag; closing tag without its opening tag; any of these tags: "base", "basefont", "head", "html", "body", "applet", "object", "iframe", "frame", "frameset", "script", "layer", "ilayer", "embed", "bgsound", "link", "meta", "style", "title", "blink", "xml" etc.; any of these attributes: on*, data*, dynsrc; javascript:/vbscript:/about: etc. protocols; expression/behavior etc. in styles; any other active content. It also tries to convert code to XHTML valid, but htmltidy is far better solution for this task.
- Erlaubte HTML-Tags: <a> <b> <blockquote> <br> <cite> <code> <dd> <div> <dl> <dt> <em> <hr> <img> <itable> <li> <ol> <p> <span> <strong> <sub> <sup> <tbody> <td> <tr> <ul>
Allowed Style properties: border-collapse, border-spacing, caption-side, color, empty-cells, float, font-size, font-style, left, right, table-layout, text-align, text-decoration, vertical-align - Web page addresses and e-mail addresses turn into links automatically.
- Zeilenumbrüche und Absätze werden automatisch erkannt. Die Tags für Zeilenumbrüche (
<br />) und Absätze (<p></p>) werden automatisch eingefügt. Wenn Absätze nicht erkannt werden, sollten noch einige Leerzeilen eingefügt werden.
- Tickermeldung:
- Web page addresses and e-mail addresses turn into links automatically.



