The event editor supports importing a subset of HTML directly into BBCode. Use the import HTML icon on the editor's toolbar.
HTML Supported
This is the list of support HTML that we convert to their equivalent bbcode
- <a href="url">text</a> turns into URLs
- <img src="url"> turns into an image
- <b></b>, <strong></strong> turns into bold
- <i></i>, <em></em> turns into italics
- <u></u>, <span></span> turns into underline
- <p>, <br> turns into new lines
- <h1> ... <h6> turns into headline
- <ul>, <ol> turns into an unordered list
- <li> turns into list items
- <table> turns into table start
- <th> turns into table header row
- <tr> turns into table row
- <td> turns into table column
HTML Ignored
<html>, <head>, <doctype>, <thead>, <tbody>, <title>, <div>, <hr> and any tag not in the previous list.