Table of Contents

Pages (not final)

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.

Schema

Notes

Example

{
"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"
        }
    }]
}
 
}
}
1)
A range is just a string with a zero-indexed start and end position (start-inclusive, end-exclusive) separated by a hyphen. For example, if a link was present starting at the first character and ending at the tenth, the range would be “0-10”. Characters should be counted by the number of Unicode code points, similarly to XEP-0426.