Print Search Content Actions Wiki Search |
ContentsPurposeThere are many different places that members and especially volunteers add page markup. While, this is a positive thing, we need to try to do so in a compatibile way.
The End ResultEB Pages are XHTML 1.0 Strict. For the most people, that has little to no impact. The average user need only ensure that the XML (HTML) document is well formed. Wiki GuidelinesIn general, use as much non-HTML wiki markup as possible. Avoid using the <br/>, <p/>, <b>, <i> and <u> HTML elements just to name a few. This way we can more easily control the quality of the page layout. Forum GuidelinesUse the forum style markup only. HTML GuidelinesFor the most part this applied to the volunteers, but it good reading for users who wish to embed html in the wiki pages (not advised, but not forbidden). Definitions
Well Formed DocumentThis is the MOST IMPORTANT thing to know about HTML editing. In the earlier versions of HTML, it did not have to well formed, but now it does. Well formed
you must finish it with a . In the case of single tags, you can use the shorthand likeinstead if the incorrect tag. The reason for this is that one wrong tag can potentially mess up the whole page. The worst part is that your browser might auto-correct for the mistake while the next browser simply wont. When possible, don't use HTML markup. In the wiki, use wiki markup and on the forum,use forum markup. [i]I have a future plan to extend forum markup to the note fields where you guys often use HTML markup. [/i] So, here are some examples [b]Bad[/b] [code]This is my first paragraph.and this is my second.[/code] [b]Good[/b] [code]<p>This is my first paragraph. and this is my second. [/code][b]Bad[/b]
[code]This is my first line. [b]Good[/b] [code]This is my first paragraph.and this is my second.[/code] |