what's the use of HTML nugget?

Random stuff about serendipity. Discussion, Questions, Paraphernalia.
Post Reply
CapriSkye
Regular
Posts: 119
Joined: Sun Oct 31, 2004 4:42 am
Location: Taiwan
Contact:

what's the use of HTML nugget?

Post by CapriSkye »

anyone know what HTML nugget is for? maybe an example? thanks
Little Hamster
Regular
Posts: 62
Joined: Thu Oct 07, 2004 3:16 pm

Post 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 :)
RonH.
Regular
Posts: 8
Joined: Thu Nov 11, 2004 12:50 am
Location: Southeast Texas
Contact:

Post 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.
Little Hamster
Regular
Posts: 62
Joined: Thu Oct 07, 2004 3:16 pm

Post 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>
Post Reply