Re: HTML 2.0 specification
wmperry@spry.com
Date: Fri, 2 Sep 94 14:52:00 EDT
Message-id: <m0qgdlC-00001MC@monolith>
Reply-To: wmperry@spry.com
Originator: html-wg@oclc.org
Sender: html-wg@oclc.org
Precedence: bulk
From: wmperry@spry.com
To: Multiple recipients of list <html-wg@oclc.org>
Subject: Re: HTML 2.0 specification
X-Listprocessor-Version: 6.0c -- ListProcessor by Anastasios Kotsikonas
X-Comment: HTML Working Group (Private)
David C. Martin writes:
> We have implemented several features from HTML+ that we would like to
> discuss having in the HTML 2.0 specification. Specifically, we have
> implemented the EMBED, GROUP and LINK elements.
>
> Please let me know how we can participate in the discussion.
The emacs browser has had the EMBED and LINK tags for quite a while. The
LINK tag is in the HTML 2.0 spec. It would be nice if the EMBED tag would
be included. The way I implemented it (ala an older HTML+ spec way back in
'93) is as follows:
<embed TYPE="somecontent/type">
data of somecontent/type
would
go
here
no wrapping/formatting
should be done at all
</embed>
Something I added that wasn't in the HTML+ spec at the time was to add a
SRC attribute similar to the <IMG> tag, so
<embed TYPE="somecontent/type" SRC="someurl">
with no closing tag.
-Bill P.