XML and Perl: Embedding XML in HTML | 5
XML and Perl::Practical XML
The potential benefits of using XML as a generic self-descriptive data format are so compelling that many developers are already integrating the technology into their products. We will probably not see XML documents replacing HTML in the next year or so, but we will see it used extensively to automate Web content management processes. These processes include building Web indexes, resource catalogs, and enhancing searching capabilities. The scope of implementation may involve a single document, a logical collection of multiple documents, or an entire Web site.
This will initially be done by embedding XML metadata tags in HTML documents. Metadata is data about data, or a description/classification of information. For instance, examine the following:
<html><body> |
Notice the three non-HTML tags highlighted in blue above: <document>, <toc> and <abstract>. With this additional information, we can write a script to automate the process of building a table of contents for our documents. This capability may seem trivial for a few documents, but imagine building a table of contents by hand for hundreds or thousands of documents that are updated on a regular basis. We can also utilize this information to refine the granularity of results from our Web search engine, enhance the site index, and automate the organization of a categorized resource catalog using the <document> and <abstract> tags.
One notable XML format, RDF (Resource Description Framework), embodies the metadata ideology. In fact, Netscape has an RDF implementation in their Mozilla source. Mozilla is Netscape's effort to improve their browser by releasing the source code to the public for review and enhancement.
It should be noted that adding additional tags that are not defined in the HTML specification invalidates the HTML source. While most Web browsers ignore tags they don't recognize, problems might occur in some older browsers. To avoid problems, you may want to surround these tags with HTML comments.
Produced by Jonathan
Eisenzopf and
Created: Feb. 14, 1999
Revised: Feb. 17, 1999
URL: https://www.webreference.com/perl/tutorial1/