Svoboda | Graniru | BBC Russia | Golosameriki | Facebook

To install click the Add extension button. That's it.

The source code for the WIKI 2 extension is being checked by specialists of the Mozilla Foundation, Google, and Apple. You could also do it yourself at any point in time.

4,5
Kelly Slayton
Congratulations on this excellent venture… what a great idea!
Alexander Grigorievskiy
I use WIKI 2 every day and almost forgot how the original Wikipedia looks like.
Live Statistics
English Articles
Improved in 24 Hours
Added in 24 Hours
What we do. Every page goes through several hundred of perfecting techniques; in live mode. Quite the same Wikipedia. Just better.
.
Leo
Newton
Brights
Milds

From Wikipedia, the free encyclopedia

Content Profile/Linked Document
AbbreviationCP/LD
StatusPublished
Year started2018
First published2023
OrganizationANSI/NISO
Committeewww.niso.org/standards-committees/cpld
EditorsRinke Hoekstra
Base standardsHTML, JSON-LD,
Related standardsRDF, IRI, W3C Publication Manifest
Domain
Websitewww.niso.org/publications/z39105-2023-cpld

The CP/LD format defines a flexible, extensible, machine readable format that links HTML5 documents with content to JSON-LD graphs for the data and semantics.[1]

The Linked Document part of the standard outlines the minimal characteristics of documents, whereas the Content Profile part describes how to extend and refine rules for specific use cases.

History

  • 2018. For internal use, as an alternative for the print driven, more rigid, XML format used at the Elsevier for processing scholarly articles, teams at that company started developing CP/LD in 2018.
  • 2020. A proposal to create a standard from this effort was accepted by the NISO.
  • 2023. CP/LD was published by the NISO and approved by the ANSI.

Examples

A example of a minimal document is:

<!DOCTYPE html>
<html lang="en">
  <head>
    <link rel="schema.dcterms" href="http://purl.org/dc/terms/" />
    <base href="https://example.com/minimal" />
    <meta name="id" content="https://example.com/minimal" />
    <meta name="dcterms.conformsTo" content="https://w3id.org/cpld/" />
    <title>Minimal Linked Document</title>
    <script type="application/ld+json">
      {
        "@context": {
          "@vocab": "http://schema.org/",
          "doc": "https://example.com/minimal#",
          "ex": "https:example.com/narrativeStructure/"
        },
        "@graph": {
          "@id": "https://example.com/minimal",
          "schema:conformsTo": "https://w3id.org/cpld/",
          "@type": "schema:Article",
          "schema:hasPart": [
            {
              "@id": "doc:e1",
              "@type": "ex:Introduction"
            }
          ]
        }
      }
    </script>
  </head>
  <body>
    <h1 id="e0">Minimal document</h1>
    <p id="e1">Hello World</p>
  </body>
</html>

External links

References

  1. ^ "ANSI/NISO Z39.105-2023, Content Profile/Linked Document | NISO website".
This page was last edited on 10 June 2024, at 23:14
Basis of this page is in Wikipedia. Text is available under the CC BY-SA 3.0 Unported License. Non-text media are available under their specified licenses. Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc. WIKI 2 is an independent company and has no affiliation with Wikimedia Foundation.