Fact-checked by Grok 2 weeks ago

XLink

XLink, formally known as the XML Linking Language, is a (W3C) specification that enables the creation and description of links between resources in XML documents by inserting specialized elements and attributes. It supports a range of linking capabilities, from simple unidirectional hyperlinks akin to those in to more advanced multidirectional, typed, and metadata-enriched links, all expressed using standard XML syntax. Developed under the W3C XML Activity and inspired by hypermedia systems such as , HyTime, and the (TEI), XLink provides extensible mechanisms for associating resources, storing links separately from content, and defining traversal rules. Version 1.1 of the specification, edited by Steve DeRose, Eve Maler, David Orchard, and Norman Walsh, was published as a W3C Recommendation on 6 May 2010, superseding the 2001 version and incorporating updates like support for Internationalized Resource Identifiers (IRIs) instead of URIs. Central to XLink are its linking and attributes, declared in the namespace http://www.w3.org/[1999](/page/1999)/xlink. Simple links use attributes like xlink:href for direct outbound connections, while extended links employ child such as <xlink:locator> for remote resources, <xlink:arc> for defining connections and behaviors (e.g., via xlink:show for embed or replace actions and xlink:actuate for onRequest or onLoad triggering), <xlink:resource> for inline content, and <xlink:title> for labels. Conformance is divided into full support for all features or basic support limited to simple links, with dependencies on foundational specifications including XML 1.0, XML Namespaces, XML Base, and RFC 3987 for .

Overview

Definition and Purpose

XLink, formally known as the XML Linking Language, is a W3C recommendation that provides a standardized mechanism for creating and describing both internal and external links within XML documents. It enables the establishment of explicit relationships between resources, allowing for hyperlinks that connect multiple endpoints, including bidirectional and multi-directional connections, which surpass the capabilities of traditional HTML anchors. As defined in the specification, an XLink is asserted through conforming XML elements that insert linking constructs into documents, facilitating the integration of links with broader XML structures. The primary purpose of XLink is to extend XML's expressive power by supporting out-of-line link definitions, where can be separated from the content they reference, thus promoting modularity and reusability in document architectures. This includes the ability to define traversal rules through that govern how are navigated, as well as associating such as roles and titles with to convey richer semantics about their behavior and intent. Unlike HTML's unidirectional elements, XLink accommodates complex scenarios like third-party links and inbound , enabling applications to process for both human-readable hypermedia and machine-readable data exchanges. To function, XLink requires the declaration of its , typically via the xmlns:xlink attribute pointing to "http://www.w3.org/1999/xlink", which allows XML parsers and applications to recognize and process linking elements distinctly from other markup. This integration ensures compatibility with XML's modular ecosystem, positioning XLink as a foundational technology for advanced linking in standards like and XSL. While it supports basic simple links akin to hyperlinks and more sophisticated extended links for multi-resource connections, its design emphasizes flexibility for diverse XML-based applications.

History and Development

The development of XLink began in 1997 as part of the Consortium's (W3C) efforts to establish linking mechanisms for XML, with the XML Linking formed to continue work initiated within the broader XML earlier that year. The group aimed to create advanced, scalable hyperlinking and addressing functionality tailored to XML's extensible nature, drawing initial inspiration from established hypertext models such as HyTime—an ISO standard for hypermedia/time-based structuring—and the Hypertext , which provided foundational abstractions for linking components like nodes and links. Key milestones in XLink's progression included the release of its first Working Draft on March 3, 1998, followed by subsequent drafts in 1999 and 2000 that refined the specification's core concepts. By July 3, 2000, it advanced to Candidate Recommendation status, incorporating feedback on link types, , and resource identification. The specification achieved W3C Recommendation status as XLink 1.0 on June 27, 2001, marking its formal adoption as a standard for embedding hyperlinks in XML documents. Following the 2001 Recommendation, the XML Linking Working Group concluded its primary work and closed on December 31, 2002, with maintenance responsibilities transferred to the XML Core Working Group. Minor clarifications led to XLink 1.1, which progressed through stages including a Candidate Recommendation on March 28, 2006, and ultimately reached Recommendation status on May 6, 2010, introducing features like optional type attributes for simple links and support for Internationalized Resource Identifiers (). Since then, no further updates have been issued, reflecting the specification's stability amid evolving standards, with the last related activity in the W3C XML Activity occurring around 2010.

Technical Specification

Core Elements and Attributes

XLink defines a set of core linking elements through the use of specific attributes, primarily xlink:type, which turn arbitrary XML elements into foundational building blocks for creating within XML documents, enabling both and complex linking structures. For links, any XML element can be designated as a starting with an outbound connection to a remote via the xlink:href attribute (optionally with xlink:type="simple"). For extended links, an XML element (conventionally named <xlink:extended>) with xlink:type="extended" serves as a container facilitating multi- links with support for inbound and third-party traversals; it contains child elements designated as locators (with xlink:type="locator") to identify remote resources, arcs (with xlink:type="arc") to specify traversal rules and directional connections between resources, s (with xlink:type="title") to supply human-readable descriptive labels for links, locators, or arcs, and resources (with xlink:type="resource") to embed local resources directly within extended links. All XLink elements share two fixed attributes that ensure proper namespace identification and type declaration. The type attribute is mandatory and specifies the role of the element, with possible values including "", "extended", "locator", "", "", or "" to indicate the linking function. The xmlns:xlink attribute declares the XLink and must be set to the fixed "http://www.w3.org/1999/xlink", allowing XLink elements to be distinguished within XML documents. In addition to these fixed attributes, XLink provides a suite of local attributes to control linking behavior, semantics, and traversal details, all of which are optional unless otherwise specified. The href attribute supplies a URI reference to a remote resource and is required on locator elements while being optional on simple links. The role attribute describes the semantic purpose of a resource or the link itself and may appear on simple links, extended links, locators, or resources. The arcrole attribute defines the nature of the relationship conveyed by an arc and is applicable to arcs or simple links. The title attribute offers advisory human-readable text for any XLink element type. The show attribute dictates the presentation behavior upon link activation, with values such as "new" (open in a new presentation context), "replace" (replace current view), "embed" (embed in place), "other" (non-standard), or "none" (no change), and applies to simple links or arcs. Similarly, the actuate attribute governs traversal timing, with options including "onLoad" (automatic on load), "onRequest" (manual on user request), "other" (non-standard), or "none" (no automatic action), also for simple links or arcs. For extended links, the label attribute assigns unique identifiers to locator or resource elements, while the from and to attributes on arc elements reference these labels to define traversal endpoints. XLink enforces specific usage rules to maintain consistency and validity. The type attribute is required on all XLink elements to explicitly denote their function, except in cases where a simple link is inferred solely from the presence of an href attribute. Behaviors specified by show and actuate are optional and default to "embed" and "onRequest", respectively, per the XLink semantics, allowing flexible control over how links are processed and presented by applications. These attributes collectively enable precise link construction while adhering to XML's extensibility principles. Simple links in XLink represent basic, unidirectional hyperlinks that connect a local XML element to a single remote , functioning similarly to anchor elements but applicable to any XML context. They establish an outbound arc from the linking element (the local ) to the target specified by a , serving as a streamlined to more complex linking structures. The syntax for a simple link involves designating any XML element with the xlink:type attribute set to "simple"—though this attribute is optional and implied when an xlink:href attribute is present—and including the xlink:href attribute to reference the remote resource. Additional attributes such as xlink:show control the presentation of the linked content upon activation, with values including "new" to open in a new window or tab, "replace" to load in the current context, "embed" for inline replacement, or "none" for no specific behavior. The xlink:actuate attribute determines traversal timing, allowing "onLoad" for automatic activation or "onRequest" for user-initiated triggering. The xlink:title attribute provides an optional human-readable label for the link. For instance, in an XML document listing students, a simple link might appear as:
<student xlink:href="http://example.com/students/patjones.xml" 
         xlink:show="replace" 
         xlink:title="Pat Jones Profile" 
         xlink:actuate="onRequest">
  Pat Jones
</student>
This embeds the within the <student> element's content, enabling traversal to the external profile when activated manually. Simple links are particularly suited for straightforward use cases, such as creating inline hyperlinks within XML documents to reference external files, resources, or internal sections, thereby enhancing without the overhead of multi-resource linking. They promote in XML-based applications by standardizing basic outbound connections across diverse schemas. Extended links in XLink provide a mechanism for creating complex, multi-resource associations that go beyond the unidirectional nature of simple links, enabling the connection of an arbitrary number of local and remote resources within a single link construct. These links are particularly suited for scenarios requiring bidirectional or multi-directional traversals, such as linking related documents in a collection or defining semantic relationships in metadata structures. The extended link serves as a container that organizes participating resources without embedding them directly, allowing for flexible management by third parties or linkbases. The structure of an extended link is defined by an XML element with the xlink:type="extended" attribute (conventionally <xlink:extended>), which acts as the root for its subelements. Key components include locator elements (with xlink:type="locator") for referencing remote resources, resource elements (with xlink:type="resource") for incorporating local content, and arc elements (with xlink:type="arc") to specify connections and traversal semantics. Locators use the required xlink:href attribute to point to external IRIs, paired with an optional xlink:label for identification in arcs; for instance, a locator might reference a document like <xlink:locator xlink:type="locator" xlink:href="https://example.com/doc1.xml" xlink:label="loc1"/>. Resources, on the other hand, embed inline content with optional xlink:role and xlink:label attributes to denote their purpose and enable arc targeting, such as <xlink:resource xlink:type="resource" xlink:label="res1">Local content here</xlink:resource>. Arcs define the relational graph using xlink:from and xlink:to attributes to link labels, with xlink:arcrole providing semantic context via an IRI, like "child" for hierarchical ties. Traversal in extended links follows rules governed by the arcs, which dictate the direction and behavior of navigation between labeled resources. An arc's xlink:from specifies the starting point, while xlink:to indicates the destination, supporting outbound (from local to remote), inbound (remote to local), or third-party traversals among multiple participants. Additional attributes like xlink:show (e.g., "replace" to embed the or "new" for a separate ) and xlink:actuate (e.g., "onRequest" for user-initiated or "onLoad" for automatic) control presentation and timing during traversal. The xlink:[role](/page/Role) attribute on the extended link or resources describes the overall purpose (e.g., "" for a grouping ), while xlink:arcrole on arcs interprets specific relationships, such as a "has-part" semantic akin to RDF predicates, ensuring traversals convey meaningful context like parent-child hierarchies. Constraints prevent duplicate from/to pairs to avoid ambiguous paths. A representative example illustrates this structure in a basic hierarchical link:
xml
<xlink:extended xmlns:xlink="http://www.w3.org/1999/xlink" xlink:role="hierarchy">
  <xlink:locator xlink:type="locator" xlink:href="doc1.xml" xlink:label="loc1" xlink:role="parent"/>
  <xlink:locator xlink:type="locator" xlink:href="doc2.xml" xlink:label="loc2" xlink:role="child"/>
  <xlink:arc xlink:type="arc" xlink:from="loc1" xlink:to="loc2" xlink:arcrole="http://example.com/roles#parentOf" xlink:show="replace" xlink:actuate="onRequest"/>
</xlink:extended>
Here, the enables traversal from the parent to the , with the arcrole specifying the relational semantics. The benefits of extended links include support for n-ary relationships involving multiple resources, out-of-line link definitions that separate concerns from document content, and facilitation of third-party link management through dedicated linkbases, making them ideal for applications like networked ontologies or document collections where simple fall short.

Applications and Support

Integration with XML Standards

XLink has been integrated into the Scalable Vector Graphics (SVG) specification to enable hyperlinks, external resource references, and certain animation linkages within vector graphics documents. In SVG 1.1, the xlink:href attribute from the XLink namespace is used to define simple links, such as in the <a> element for creating clickable hyperlinks to external IRIs, as in the example <a xlink:href="http://example.com">...</a>. This attribute also supports image references in elements like <image xlink:href="image.png" ... /> and can link to reusable resources for animations, such as referencing a gradient definition via fill="url(#gradientId)" where the target uses XLink attributes. Partial support for XLink has been essential since the initial SVG 1.0 recommendation in 2001, though SVG 2 shifted toward native href attributes while retaining backward compatibility. In the eXtensible Business Reporting Language (), XLink provides the foundational syntax for linking financial data elements, particularly through extended links that connect concepts in taxonomies for reporting. XBRL 2.1 employs both simple and extended XLink structures to define relationships between facts, such as references in instance documents and linkbases. Extended links are crucial for dimensional tagging in XBRL Dimensions, where arcs specify hypercubes and domains to tag financial facts with contextual axes like time or entity, enabling complex calculations and validations. Generic links further extend this by allowing custom arcroles for application-specific interconnections in . Other XML standards leverage XLink for specialized linking needs. The Resource Directory Description Language (RDDL) 1.0 uses XLink attributes on its <resource> to create machine-readable in namespace documents, with xlink:href pointing to resources, xlink:[role](/page/Role) indicating nature (e.g., ), and xlink:arcrole specifying purpose (e.g., validation). In the Metadata Encoding and Transmission Standard (METS), the structural section employs XLink extended to encode hyperlinks between hierarchical nodes in digital object descriptions, facilitating navigation across metadata components like files and divisions. The (GML) from the Open Geospatial Consortium integrates XLink for referencing geographic features, using xlink:href in property elements to interconnect spatial data across documents and support n-ary associations via extended .

Implementations and Tools

Browser support for XLink remains limited across major web browsers, with implementations focusing primarily on the SVG subset rather than full XLink processing in general XML documents. Mozilla Firefox offers partial support, restricted to the xlink:href attribute within elements, and has not implemented comprehensive XLink features since the early 2010s. Similarly, and provide support confined to SVG contexts, such as navigation in , without extending to extended links or multi-ended linking in arbitrary XML. The Prince XML engine stands out for its more robust handling, enabling full of XML documents with active XLink-based hyperlinks in generated PDF outputs, including internal and external link resolution. XML processors commonly parse XLink elements as part of standard XML handling, facilitating basic structural recognition without full behavioral execution. Libxml2 includes a dedicated hyperlink detection module that supports parsing both XML XLinks and simpler HTML-style links, allowing applications to identify and process link structures during document loading. Apache Xerces, another widely used parser, incorporates XLink-related functionality, such as URI encoding compliant with XLink specifications, ensuring accurate representation of link attributes in parsed documents. For transformation workflows, XSLT tools like Saxon enable the manipulation of linked XML documents, where XLink elements can be traversed or resolved during stylesheet application to generate output with preserved or enhanced linking. Specialized publishing tools provide deeper for XLink in professional environments. PTC Arbortext supports XLink traversal during XML-based , allowing authors to navigate and compose linked in structured documents for output formats like print or . The Amaya editor and , developed by the W3C, once offered native support for XLink including annotations and multi-document linking, but was discontinued in 2012 with its final release. As of 2025, no major browsers offer native support for full XLink in XML beyond the SVG subset, leading developers to rely on custom JavaScript polyfills for emulating link behaviors in web applications or preprocessing XML with server-side tools.

Current Status

Adoption and Challenges

XLink has seen adoption primarily in specialized XML-based domains rather than the broader web ecosystem. In (SVG), XLink attributes like xlink:href are integral for referencing external resources and enabling hyperlinks, although xlink:href has been deprecated in SVG 2 in favor of the unprefixed href attribute; it remains widely used and supported in major browsers such as , , , and as of 2025, contributing to millions of instances in deployed SVG content across websites and applications. In financial reporting, XLink remains mandatory under the XBRL 2.1 standard for linking elements in regulatory filings, as evidenced by its incorporation in U.S. Securities and Exchange Commission () EDGAR submissions, where thousands of public companies submit XBRL documents annually using XLink for instance references and arc roles. Similarly, in geospatial data standards like (GML), XLink is used for referencing remote resources and defining associations between features. However, its uptake in general is minimal, overshadowed by simpler alternatives due to XLink's structural complexity. Key challenges have hindered XLink's broader implementation. The companion XPointer specification, intended for fine-grained intra-document addressing, advanced only to Candidate Recommendation status in 2003 and was never elevated to full W3C Recommendation, leaving a gap in robust fragment capabilities. Interoperability issues arise from inconsistent interpretations of XLink's show and actuate attributes across processors, which control link presentation and activation timing but lack standardized enforcement without dedicated XML browsers. Furthermore, XLink has been largely eclipsed by HTML5's native linking mechanisms and JSON-based data exchange formats, which offer easier integration in modern web and environments without requiring XML parsing overhead. As of 2025, XLink holds a legacy status within the W3C, with its core specification (Version 1.0 from 2001) superseded by Version 1.1 in 2010 and no substantive updates since, reflecting the closure of the XML Linking Working Group. It continues to be required in established standards like XBRL 2.1 for compliance-driven applications, yet its use is declining in new projects favoring lightweight, non-XML technologies. Significant barriers include the steep learning curve associated with extended links, which demand understanding of complex arc and locator structures for multi-endpoint connections, and limited native browser support outside SVG— for instance, Firefox handles XLink in SVG but not in arbitrary XML documents.

Alternatives

In web development, HTML5 provides simpler alternatives to XLink through the <a> element for hyperlinks and the <link> element for relational links, such as stylesheets or icons, which support relative and absolute URIs without requiring XML-specific namespaces. These elements integrate seamlessly with HTML's native parsing and rendering, enhanced by roles like role="link" for semantic , making them more straightforward for browser-based applications but less suited for pure XML environments. For instance, an <a href="target.html"> creates a unidirectional link akin to XLink's simple links, yet avoids the overhead of extended linking constructs. As a modular successor to aspects of XLink, XML Base defines the xml:base attribute to establish base for resolving relative references within XML documents, enabling consistent URI handling without full XLink syntax. This approach supports XLink's URI resolution needs but operates independently, allowing other XML applications to benefit from base URI services. For semantic linking, embeds RDF triples directly into or XML attributes using prefixes like rel and resource, providing structured data relationships without XLink's linking element complexity. Similarly, uses such as itemscope and itemprop to annotate elements with vocabulary-based links, offering a lightweight way to express relationships like authorship or navigation in web pages. Within XML ecosystems, XInclude serves as an inclusion mechanism rather than a linking one, using elements like <xi:include> to embed external XML fragments into a host at processing time, producing a merged output without traversal. This contrasts with XLink's view-based linking by creating static inclusions, ideal for modular document assembly. Schematron complements this by enabling rule-based references through assertions in <sch:assert> elements, validating patterns across linked or included XML structures without defining hyperlinks. For non-XML linked data, represents relationships using @id and @context in JSON objects, facilitating graph-based connections in or web embeds that bypass XML's verbosity. Emerging technologies extend modular linking beyond traditional XML. , via custom elements and templates, allow reusable modules with internal linking, while Shadow DOM encapsulates styles and DOM subtrees to prevent external interference, enabling isolated hyperlink behaviors within components. In API contexts, provides query-based connections through schema-defined fields and resolvers, allowing clients to fetch relations declaratively without fixed endpoints, as in traversing a graph of resources via queries like { user { posts { title } } }. Given XLink's limited adoption and browser support challenges, alternatives like elements or are preferred for modern web and development due to their native and maturity, while XLink remains relevant only for legacy XML standards requiring bidirectional or multi-ended links.

References

  1. [1]
    XML Linking Language (XLink) Version 1.1 - W3C
    May 6, 2010 · This specification defines the XML Linking Language (XLink), which allows elements to be inserted into XML documents in order to create and describe links ...XLink Markup Design · XLink Attribute Usage Patterns · Traversal Rules for an...
  2. [2]
  3. [3]
    XML Linking Language (XLink) - W3C
    Jan 19, 2000 · Abstract. This specification defines the XML Linking Language (XLink), which allows elements to be inserted into XML documents in order to ...Missing: charter | Show results with:charter
  4. [4]
    [PDF] XML Linking Language (XLink) Version 1.0 - RenderX
    Jun 27, 2001 · HyTime [ISO/IEC 10744]: Defines inline and inbound and third-party link structures and some semantic features, including traversal control and ...
  5. [5]
    [PDF] It's Time to Link! On the Development of Time-Sensitive Linking ...
    The Dexter model has affected design requirements and the development of XML Linking Language (XLink) (W3C 2001b). The model provides a theoretical background ...
  6. [6]
  7. [7]
    XML Linking Language (XLink) Version 1.0 publication history - W3C
    27 June 2001, Recommendation ; 20 December 2000, Proposed Recommendation ; 3 July 2000, Candidate Recommendation Snapshot ; 21 February 2000, Last Call Working ...
  8. [8]
  9. [9]
    XML Linking | Working Groups - W3C
    Information. The XML Linking Working Group was closed on 31 December 2002. XML Linking Working Group. Toggle content.Missing: formation date
  10. [10]
    XML Linking Language (XLink) Version 1.1 publication history - W3C
    XML Linking Language (XLink) Version 1.1 publication history ; 31 March 2008, Last Call Working Draft ; 28 March 2006, Candidate Recommendation Snapshot ; 7 July ...
  11. [11]
    W3C XML Pointer, XML Base and XML Linking
    W3C Status. Current version: Recommendation 1.0, June 27th 2001; Proposed Recommendation , December 20 2000; the XLink CR DoC · Disposition of Last Call ...
  12. [12]
    XML Linking Language (XLink) Version 1.0
    **Summary of XLink 1.0 Core Elements and Attributes (W3C Recommendation, 27 June 2001)**
  13. [13]
  14. [14]
  15. [15]
  16. [16]
  17. [17]
  18. [18]
  19. [19]
  20. [20]
  21. [21]
    Linking – SVG 1.1 (Second Edition) - W3C
    SVG uses IRIs for linking, with the ‘a’ element for links out and IRI fragments for linking into specific views. The ‘xlink:href’ attribute is used for IRI ...
  22. [22]
    Extensible Business Reporting Language (XBRL) 2.1
    Dec 31, 2003 · XBRL uses both the simple links and the Extended Links defined in the [XLINK] specification. The [XLINK] specification establishes the ...
  23. [23]
    XBRL Generic Links 1.0
    Jun 22, 2009 · This specification provides guidance on the use of custom links and provides concrete syntax that can be leveraged by extensions of the XBRL Specification.
  24. [24]
    XML Resource Directory Description Language (RDDL)
    Jul 4, 2005 · This element serves as an XLink to the referenced resource, and contains a human-readable description of the resource and machine readable links ...
  25. [25]
    METS: An Overview & Tutorial - The Library of Congress
    Structural Links - The Structural Links section of METS allows METS creators to record the existence of hyperlinks between nodes in the hierarchy outlined in ...
  26. [26]
    OGC City Geography Markup Language (CityGML) Part 2
    Jun 20, 2023 · There are two XML concepts that are used to reference objects in GML instance documents: the XML Linking Language (XLink) and the XML Pointer ...
  27. [27]
  28. [28]
    Harvesting RDF Statements from XLinks - W3C
    Sep 29, 2000 · RDF is primarily for describing resources and their relations, while XLink is primarily for specifying and traversing hyperlinks. However, the ...
  29. [29]
    xlink:href - SVG - MDN Web Docs
    Apr 16, 2025 · The xlink:href attribute defines a reference to a resource as a reference IRI. The exact meaning of that link depends on the context of each element using it.
  30. [30]
    XML, XLink and XPointer - W3Schools
    XLink is used to create hyperlinks within XML documents · Any element in an XML document can behave as a link · With XLink, the links can be defined outside the ...Missing: specification | Show results with:specification
  31. [31]
    Prince Output · Prince Documentation
    Prince supports PDF-internal and -external links. HTML hyperlinks are automatically converted. To make an element in XML, or any arbitrary element, a clickable ...Missing: XLink | Show results with:XLink
  32. [32]
    Releases Archive - Apache Xerces
    Encode characters for anyURI using xlink 5.4 algorithm. Patch from Gilbert ... Remove support for building Xerces with VC7. 2006-07-04, Alberto Massari ...
  33. [33]
  34. [34]
    Amaya Home Page - W3C
    Dec 18, 2012 · Amaya is a Web editor, ie a tool used to create and update documents directly on the Web. Browsing features are seamlessly integrated with the editing and ...Missing: discontinued | Show results with:discontinued
  35. [35]
    XLink - Glossary - MDN Web Docs
    Jul 11, 2025 · For those who may have found XLink 1.0 cumbersome for regular links, XLink 1.1 drops the need to specify xlink:type="simple" for simple links.<|control11|><|separator|>
  36. [36]
    [PDF] EDGAR XBRL Guide - SEC.gov
    Filers may consult the separate EDGAR XBRL Guide (Filing Fee Extract) for references in connection with preparing fee-related submissions on EDGAR using XBRL.
  37. [37]
    [PDF] GeoXBRL: Integration Standard between Geographical and ...
    This paper specifies an integration between geographic and business/financial data. For this, W3C technologies such as XLink, XML schema, GML and XBRL have been ...Missing: SVG 2025
  38. [38]
    XML Linking Language (XLink) Version 1.0 | Request PDF
    Although not obvious from the W3C specifications, this paper demonstrates some of the new, crucial features of XPath 3.0 that make it a truly complete, ...
  39. [39]
    W3C XML Linking Working Group and Interest Group
    By unanimous decision from the XML Linking Working Group on 14th December 2000, this document status has been changed from W3C Member only access to publicly ...Revision: $revision: 1.16 $ · Xmlbase · Xpointer Specific Issues
  40. [40]
  41. [41]
    xBRL-XML: XML Mappings for the Open Information Model 1.0
    Oct 13, 2021 · This document defines a bi-directional mapping between the Open Information Model and an XBRL v2.1 conformant XML document.
  42. [42]
    Spatial Data on the Web Best Practices - W3C
    Sep 19, 2023 · This document advises on best practices related to the publication of spatial data on the Web; the use of Web technologies as they may be applied to location.<|separator|>
  43. [43]
    SVGs with use xlink not working in Firefox 84 - Stack Overflow
    Jan 19, 2021 · I'm having an issue where I have a couple of SVGs that are not showing up in Firefox. They work fine in Chromium and Safari.
  44. [44]
    XML Base (Second Edition) - W3C
    Jan 28, 2009 · This document describes a mechanism for providing base URI services to XLink, but as a modular specification so that other XML applications ...xml:base Attribute · Granularity of base URI... · Matching URIs with base URIs
  45. [45]
  46. [46]
    Schematron | Schematron
    A language for making assertions about the presence or absence of patterns in linked XML documents, and reporting them in useful ways. Schematroll.Converting Schematron to... · Schematron reimagined for... · Schematron QuickFix
  47. [47]