The Pages extension defines a kind of note that includes a long-form article, allowing users to share and link to stand-alone documents.
Within the page content, links to PawPub objects (including other pages, as well as notes, actors, etc) should not use the markup language's own link mechanism, instead they should be defined in the links array. This allows them to use in-app / local instance links instead of opening the remote instance, and makes it easier for software to discover relationships between pages. Links to other websites should use markup links as normal.
{ "type": "note", "plainContent": "\"Why you should use Pages\" - https://example.social/page/123", ... "extensions": { "https://pawpub.entities.org.uk/extension/pages": { "title": "Why you should use Pages", "content": { "text/markdown": "important reason here!!!! **wow** look at this other page", "text/html": "important reason here!!!! <strong>wow</strong> look at this other page", }, "links": [{ "target": "https://social.example/note/another-page", "range": { "text/markdown": "42-57", "text/html": "55-70" } }] } } }