Page 1 of 1

what's the use of HTML nugget?

Posted: Thu Nov 11, 2004 8:33 pm
by CapriSkye
anyone know what HTML nugget is for? maybe an example? thanks

Posted: Thu Nov 11, 2004 9:14 pm
by Little Hamster
It's for displaying arbitrary html snippets. For example you can add a list of links. But of course, using it will require you knowning a bit of html :)

Posted: Sat Nov 13, 2004 1:50 pm
by RonH.
Little Hamster wrote:.... For example you can add a list of links. But of course, using it will require you knowning a bit of html :)
Would you know if it will support a table? I want to add a LINK list also to my site unless there is already a PLUG-IN designed to do just this.

Posted: Mon Nov 15, 2004 10:32 am
by Little Hamster
I used plain <br> for links.

Code: Select all

<a href="http://www.s9y.org">s9y</a><br>
<a href="http://www.slashdot.org">slashdot</a>
I don't see why you need a table for links. But tables do work in the HTML nugget. I tried this

Code: Select all

<table>
<tr><td>hello</td><td>world</td></tr>
<tr><td>good</td><td>day</td></tr>
</table>