Skip to content

HTML tags for article

Here we analyze, which types of HTML tags are allowed inside the content field of Article type objects. One should expect that a Note, i.e.

Represents a short written work typically less than a single paragraph in length.

see here, should not contain headings h1-h6 or embedded media, e.g. img.

Sanitizing fields is desired behavior as seen in Section B.10 of ActivityPub.

Objects

Object 1

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<b>bold</b>",
  "id": "http://actor.example/object/XqcTAapyrkc",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 2

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<strong>strong</strong>",
  "id": "http://actor.example/object/ZCMxZLFgvRU",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 3

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<i>italic</i>",
  "id": "http://actor.example/object/_v51dBaVwV4",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 4

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
  "id": "http://actor.example/object/0w_g1U9y2kM",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 5

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<em>emphasis</em>",
  "id": "http://actor.example/object/QhgOR1l76gc",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 6

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<del>old</del><ins>new</ins>",
  "id": "http://actor.example/object/6Bo2lfKNc0M",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 7

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<s>stricken</s>",
  "id": "http://actor.example/object/ra39K8eYWQU",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 8

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<mark>mark</mark>",
  "id": "http://actor.example/object/waSR7YZM5fc",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 9

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "find <var>x</var> (a variable)",
  "id": "http://actor.example/object/xze6EZPub-Y",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 10

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<ol><li>ordered</li></ol>",
  "id": "http://actor.example/object/5g__aWFOU2M",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 11

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<ul><li>unordered</li></ul>",
  "id": "http://actor.example/object/JH3Hjmba3Bg",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 12

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<h1>h1</h1>",
  "id": "http://actor.example/object/InVnDtbPUbI",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 13

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<h2>h2</h2>",
  "id": "http://actor.example/object/zbF70apRSmY",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 14

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<h3>h3</h3>",
  "id": "http://actor.example/object/aNNYG429SCw",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 15

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<h4>h4</h4>",
  "id": "http://actor.example/object/25JGEZSxjUg",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 16

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<h5>h5</h5>",
  "id": "http://actor.example/object/ezrVi_iDWLw",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 17

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<h1>h1</h1><h2>h2</h2>",
  "id": "http://actor.example/object/j9HyY4lk1Y4",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 18

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<code>code</code>",
  "id": "http://actor.example/object/nPwFf8Yd8TM",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 19

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<pre>pre</pre>",
  "id": "http://actor.example/object/BTyT-SMTfqM",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 20

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<blockquote>blockquote</blockquote>",
  "id": "http://actor.example/object/RnF_Wp1O894",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 21

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "line<br/>break",
  "id": "http://actor.example/object/5RUZk1Vmuhs",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 22

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<p>paragraph</p>",
  "id": "http://actor.example/object/ijdqZeBXeh8",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 23

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<small>small</small>",
  "id": "http://actor.example/object/251-fJ8SaZ8",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 24

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<sup>sup</sup>",
  "id": "http://actor.example/object/bmrMmyBZqe4",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 25

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<sub>sub</sub>",
  "id": "http://actor.example/object/oxgFyqeDa4U",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 26

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<a href='https://funfedi.dev'>funfedi</a>",
  "id": "http://actor.example/object/tYox5_8wkEs",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 27

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<script>alert('hi');</script>",
  "id": "http://actor.example/object/KVTUNwfI6gI",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 28

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
  "id": "http://actor.example/object/IK6-PkidLrI",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 29

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
  "id": "http://actor.example/object/UKDFrzLcGjk",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 30

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>",
  "id": "http://actor.example/object/ElGxFkwtLac",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 31

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "Video <video controls width=\"250\">\n  <source src=\"http://pasture-one-actor/assets/cow_eating.mp4\" type=\"video/mp4\" />\n  Video of a cow eating</video>",
  "id": "http://actor.example/object/l7hsKz4hBT8",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 32

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<dl>\n  <dt>Beast of Bodmin</dt>\n  <dd>A large feline inhabiting Bodmin Moor.</dd>\n</dl>\n",
  "id": "http://actor.example/object/rgeXkwENn1U",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 33

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<details>\n  <summary>Details</summary>\n  Something small enough to escape casual notice.\n</details>\n",
  "id": "http://actor.example/object/8V0SZLxI1Wg",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Object 34

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "attributedTo": "http://actor.example",
  "content": "<table><tr><td>HTML tables</td></tr></table>",
  "id": "http://actor.example/object/3Nn063MisTE",
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Article"
}

Activities

Activity 1

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/OVS2LT6FuvE",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<b>bold</b>",
    "id": "http://actor.example/object/gq6cPiS7JI8",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 2

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/hOfNO3LFph0",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<strong>strong</strong>",
    "id": "http://actor.example/object/4oxbMzcQMWs",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 3

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/CDoSN9qyeGE",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<i>italic</i>",
    "id": "http://actor.example/object/S5NdAIxi8BQ",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 4

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/ZnJLXWnpwnk",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<i>italic with.</i> See <a href=\"https://codeberg.org/helge/funfedidev/issues/142\">Issue 142</a>",
    "id": "http://actor.example/object/48NWykDtUCU",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 5

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/KrP4uI0nrLA",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<em>emphasis</em>",
    "id": "http://actor.example/object/Vyu7Xsg6bAE",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 6

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/Edq-zVyhEBY",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<del>old</del><ins>new</ins>",
    "id": "http://actor.example/object/XPyojO7yQPU",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 7

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/EnOiyCPklkU",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<s>stricken</s>",
    "id": "http://actor.example/object/2hDMvPTXff0",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 8

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/bQ6msRec-co",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<mark>mark</mark>",
    "id": "http://actor.example/object/ux5aiqrL-UI",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 9

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/2UeGT_2eowU",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "find <var>x</var> (a variable)",
    "id": "http://actor.example/object/h2meJA55bVA",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 10

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/hiUHZvP2S8s",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<ol><li>ordered</li></ol>",
    "id": "http://actor.example/object/JNyV5dpY09o",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 11

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/I0b3BreQlZk",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<ul><li>unordered</li></ul>",
    "id": "http://actor.example/object/baV5J_8KExE",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 12

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/VQ-PhFKvXWQ",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<h1>h1</h1>",
    "id": "http://actor.example/object/Ri9BvjQ48_8",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 13

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/-HlSQh-bbAw",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<h2>h2</h2>",
    "id": "http://actor.example/object/wj2ZNFDk6uc",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 14

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/7B3K7eIOnGI",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<h3>h3</h3>",
    "id": "http://actor.example/object/lI2n03DMJyk",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 15

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/dObG6Tqk-nc",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<h4>h4</h4>",
    "id": "http://actor.example/object/EqkWi1y47oE",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 16

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/RH0pFNTcPuM",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<h5>h5</h5>",
    "id": "http://actor.example/object/Zdu7Pd630r4",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 17

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/Ne7jrCwgNNE",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<h1>h1</h1><h2>h2</h2>",
    "id": "http://actor.example/object/17wkpGA3Cio",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 18

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/LnG36G-Ga-4",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<code>code</code>",
    "id": "http://actor.example/object/GAojOMzgUjo",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 19

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/chrtv75CAcE",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<pre>pre</pre>",
    "id": "http://actor.example/object/M2TAgwyaomU",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 20

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/3wkdxi1F_AU",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<blockquote>blockquote</blockquote>",
    "id": "http://actor.example/object/w8XXSBg7hG0",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 21

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/sJj_NGBOS6E",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "line<br/>break",
    "id": "http://actor.example/object/r9bTxWtp1lA",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 22

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/nYUKnqvnIYM",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<p>paragraph</p>",
    "id": "http://actor.example/object/hO9zDlgKlx4",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 23

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/TnW2mPuCsW0",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<small>small</small>",
    "id": "http://actor.example/object/ht0sdPv-qFk",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 24

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/Q1SWM3jv9v4",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<sup>sup</sup>",
    "id": "http://actor.example/object/QDEzwM8sjJA",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 25

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/AXAL9XN2zoE",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<sub>sub</sub>",
    "id": "http://actor.example/object/yd7A3mExLvo",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 26

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/UxAIyC4hpXY",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<a href='https://funfedi.dev'>funfedi</a>",
    "id": "http://actor.example/object/p7K2xfeWzbo",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 27

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/aQmd_r99w_Q",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<script>alert('hi');</script>",
    "id": "http://actor.example/object/W6bEgXt7zN4",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 28

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/ZJQVMrAHzp4",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<img src=\"http://pasture-one-actor/assets/nlnet.png\" alt=\"NLNET Logo\" />",
    "id": "http://actor.example/object/NGNw1txZJwk",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 29

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/QUO25dEWm1w",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "wbr: Fernstra\u00dfen<wbr />bau<wbr />privat<wbr />finanzierungs<wbr />gesetz",
    "id": "http://actor.example/object/2qi-EUN69jk",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 30

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/KRmv-ToGyuY",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "Audio <audio controls src=\"http://pasture-one-actor/assets/cow_moo.mp3\"></audio>",
    "id": "http://actor.example/object/TuxU6GDpvuI",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 31

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/Fs_eHORjnEo",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "Video <video controls width=\"250\">\n  <source src=\"http://pasture-one-actor/assets/cow_eating.mp4\" type=\"video/mp4\" />\n  Video of a cow eating</video>",
    "id": "http://actor.example/object/DXIbKJ8xOeA",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 32

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/S_xWlEYOxlc",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<dl>\n  <dt>Beast of Bodmin</dt>\n  <dd>A large feline inhabiting Bodmin Moor.</dd>\n</dl>\n",
    "id": "http://actor.example/object/eos5A8kxgds",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 33

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/vgBePz0NekA",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<details>\n  <summary>Details</summary>\n  Something small enough to escape casual notice.\n</details>\n",
    "id": "http://actor.example/object/Z3JDYPfySQk",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}

Activity 34

{
  "@context": [
    "https://www.w3.org/ns/activitystreams",
    {
      "Hashtag": "as:Hashtag",
      "sensitive": "as:sensitive"
    }
  ],
  "actor": "http://actor.example",
  "id": "http://actor.example/activity/Awznk4rGbBA",
  "object": {
    "attributedTo": "http://actor.example",
    "content": "<table><tr><td>HTML tables</td></tr></table>",
    "id": "http://actor.example/object/qnNt0X3pAu8",
    "published": "2025-10-12T08:53:00Z",
    "to": [
      "https://www.w3.org/ns/activitystreams#Public",
      "http://remote.example/"
    ],
    "type": "Article"
  },
  "published": "2025-10-12T08:53:00Z",
  "to": [
    "http://remote.example/",
    "https://www.w3.org/ns/activitystreams#Public"
  ],
  "type": "Create"
}