Difference between revisions of "WOT Forum"
(→<dl>) |
(→<dl>) |
||
Line 108: | Line 108: | ||
:* none | :* none | ||
: Example: | : Example: | ||
− | : <pre><dl><dt>item 1 </dt><dd>item 1 description</dd><dt>item 2 </dt><dd>item 2 description</dd></dl></pre> | + | : <pre><dl><dt>item 1</dt><dd>item 1 description</dd><dt>item 2</dt><dd>item 2 description</dd></dl></pre> |
− | : Result: <dl><dt>item 1 </dt><dd>item 1 description</dd><dt>item 2 </dt><dd>item 2 description</dd></dl> | + | : Result: <dl><dt>item 1</dt><dd>item 1 description</dd><dt>item 2</dt><dd>item 2 description</dd></dl> |
Revision as of 05:05, 7 May 2011
You must register an account to participate on the Forums.
Before creating or replying on the main Forum, please take a moment to view the rules:
Currently there are 3 forums:
- General discussion
- General and off-topic community chat.
- Website review requests
- Website specific topics.
- Technical advice
- Problems with the add-on
Allowed HTML
The forum does not incorporate BBcode
Instead you have the ability to use HTML tags as well as customized tags specific for certain usages. Basic HTML is allowed. JavaScript, CSS, and other extended rules are sanitized.
Below the post / reply message box, you will see:
Allowed HTML tags:
<a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <red> <green> <yellow> <massrate> <quote>
Lines and paragraphs break automatically.
Web page addresses and e-mail addresses turn into links automatically.
Also, notice the link to the official posting help: More information about formatting options
Standard HTML tags allowed
<a>
- used to make links to other posts or web pages
- Attributes allowed:
- href - Specifies the destination of a link
- title - Tool tip text displayed with mouse-over
- target - Specifies where to open the linked document
- _blank - opens in new tab or window
- Example:
<a href="http://www.mywot.com">WOT (Web of Trust)</a>
- Result: WOT (Web of Trust)
<em>
- used in lieu of italic tag <i>
- Attributes allowed:
- none
- Example:
<em>This text is emphasized</em>
- Result: This text is emphasized
<strong>
- used in lieu of bold tag <b>
- Attributes allowed:
- none
- Example:
<strong>This text is strong</strong>
- Result: This text is strong
<cite>
- Defines a citation
- Attributes allowed:
- none
- Example:
<cite>This text is a citation</cite>
- Result:
This text is a citation
<code>
- Defines computer source code text
- Attributes allowed:
- none
- Example:
<code>for (i=0;i<=5;i++)</code>
- Result:
for (i=0;i<=5;i++)
<ul>
- Defines an unordered (bulleted) list; use the <li> to begin each list item
- Attributes allowed:
- none
- Example:
<ul><li>first line</li><li>second line</li><li>third line</li></ul>
- Result:
- first line
- second line
- third line
<ol>
- Defines an ordered (numbered) list; use the <li> to begin each list item
- Attributes allowed:
- none
- Example:
<ol><li>first line</li><li>second line</li><li>third line</li></ol>
- Result:
- first line
- second line
- third line
<li>
- Defines a list item.
- Attributes allowed:
- none
- Example: see UL or OL tags (above)
<dl>
- Defines a definition list
- The <dl> tag is used in conjunction with:
- <dt> defines the item (term) in the list
- <dd> describes the item in the list
- Attributes allowed:
- none
- Example:
<dl><dt>item 1</dt><dd>item 1 description</dd><dt>item 2</dt><dd>item 2 description</dd></dl>
- Result:
- item 1
- item 1 description
- item 2
- item 2 description