Re: Seeking clarification-- NET tags

"Daniel W. Connolly" <connolly@oclc.org>
Date: Thu, 16 Jun 94 13:27:15 EDT
Message-id: <9406161724.AA02318@ulua.hal.com>
Reply-To: html-ig@oclc.org
Originator: html-ig@oclc.org
Sender: html-ig@oclc.org
Precedence: bulk
From: "Daniel W. Connolly" <connolly@oclc.org>
To: Multiple recipients of list <html-ig@oclc.org>
Subject: Re: Seeking clarification-- NET tags 
X-Listprocessor-Version: 6.0c -- ListProcessor by Anastasios Kotsikonas
X-Comment: HTML Implementation Group
In message <9406161210.aa11345@dali.scocan.sco.COM>, Murray Maloney writes:
>
>What are NET tags?  What does <em/.../ signify?

See SGML section 7.5.1.3 Null End Tag.

	<em/.../

is short for

	<em>...</em>

Another short form (see 7.5.1.1 Empty End-tag) is:

	<em>...</>

And lists can be written:

	<ul>
	<li>xxx
	<>yyy
	<>zzz
	</ul>

Using empty start tags (7.4.1.1).

Dan