Peertube: ActivityPub: `content` is not HTML

Created on 13 Feb 2020  路  8Comments  路  Source: Chocobozzz/PeerTube



What happened?
content of an object found at https://peertube.social/videos/watch/278d2b7c-0f38-4aaa-afe6-9ecc0c4a34fe uses \n for newlines.

What do you expect to happen instead?

To use <br> for newlines since content should be HTML according to https://www.w3.org/TR/activitystreams-vocabulary/#dfn-content
Steps to reproduce:

  1. curl -H "Accept: application/activity+json" https://peertube.social/videos/watch/278d2b7c-0f38-4aaa-afe6-9ecc0c4a34fe | jq .content

Additional information

Component Type

Most helpful comment

Well in case of Pleroma we already include a markdown parser in the backend, so it's not really a problem for us. But having HTML might be better for interoperability indeed.

You could do it like Friendica and have HTML in content and markdown in contentMap for servers/clients that understand it:

      "content": "@<span class=\"vcard\"><a href=\"https://zap.dog/channel/wago\" class=\"url u-url mention\" title=\"wago\"><span class
=\"fn nickname mention\">wago</span></a></span> I think somebody's phone, browser, or internet connection is not doing them any favours.
  The site doesn't produce any junk for me on mobile or desktop. <br><br>Also Mike, your comment didn't make it to zap.dog - or, it's hi
dden somehow.",
      "contentMap": {
        "text/html": "I think somebody's phone, browser, or internet connection is not doing them any favours.  The site doesn't produce
 any junk for me on mobile or desktop. <br><br>Also Mike, your comment didn't make it to zap.dog - or, it's hidden somehow.",
        "text/markdown": "I think somebody's phone, browser, or internet connection is not doing them any favours. The site doesn't produce any junk for me on mobile or desktop. \n\nAlso Mike, your comment didn't make it to zap.dog - or, it's hidden somehow."
      }

(taken from https://social.isurf.ca/objects/c443a55c-305e-4619-ab20-45c176316901 )

All 8 comments

We use markdown for the content field, and we set mediaType to text/markdown:

  "mediaType": "text/markdown",
  "content": "Support this and our other Michigan!/usr/group videos and meetings. Learn more at http://mug.org/membership\n\nTwenty Years in Jail: FreeBSD's Jails, Then and Now\n\nJails started as a limited virtualization system, but over the last two years they've...",

Ah apologies, for some reason I forgot that it's possible to set an alternative content type without using contentMap, feel free to close then

But it could be interesting to put HTML since I don't think other federated platforms includes a markdown parser in their server or front end. Reopening for discussion if other developers have issues with our markdown.

Well in case of Pleroma we already include a markdown parser in the backend, so it's not really a problem for us. But having HTML might be better for interoperability indeed.

You could do it like Friendica and have HTML in content and markdown in contentMap for servers/clients that understand it:

      "content": "@<span class=\"vcard\"><a href=\"https://zap.dog/channel/wago\" class=\"url u-url mention\" title=\"wago\"><span class
=\"fn nickname mention\">wago</span></a></span> I think somebody's phone, browser, or internet connection is not doing them any favours.
  The site doesn't produce any junk for me on mobile or desktop. <br><br>Also Mike, your comment didn't make it to zap.dog - or, it's hi
dden somehow.",
      "contentMap": {
        "text/html": "I think somebody's phone, browser, or internet connection is not doing them any favours.  The site doesn't produce
 any junk for me on mobile or desktop. <br><br>Also Mike, your comment didn't make it to zap.dog - or, it's hidden somehow.",
        "text/markdown": "I think somebody's phone, browser, or internet connection is not doing them any favours. The site doesn't produce any junk for me on mobile or desktop. \n\nAlso Mike, your comment didn't make it to zap.dog - or, it's hidden somehow."
      }

(taken from https://social.isurf.ca/objects/c443a55c-305e-4619-ab20-45c176316901 )

Well in case of Pleroma we already include a markdown parser in the backend, so it's not really a problem for us. But having HTML might be better for interoperability indeed.

You could do it like Friendica and have HTML in content and markdown in contentMap for servers/clients that understand it:

      "content": "@<span class=\"vcard\"><a href=\"https://zap.dog/channel/wago\" class=\"url u-url mention\" title=\"wago\"><span class
=\"fn nickname mention\">wago</span></a></span> I think somebody's phone, browser, or internet connection is not doing them any favours.
  The site doesn't produce any junk for me on mobile or desktop. <br><br>Also Mike, your comment didn't make it to zap.dog - or, it's hi
dden somehow.",
      "contentMap": {
        "text/html": "I think somebody's phone, browser, or internet connection is not doing them any favours.  The site doesn't produce
 any junk for me on mobile or desktop. <br><br>Also Mike, your comment didn't make it to zap.dog - or, it's hidden somehow.",
        "text/markdown": "I think somebody's phone, browser, or internet connection is not doing them any favours. The site doesn't produce any junk for me on mobile or desktop. \n\nAlso Mike, your comment didn't make it to zap.dog - or, it's hidden somehow."
      }

(taken from https://social.isurf.ca/objects/c443a55c-305e-4619-ab20-45c176316901 )

This is a problem for Pleroma, see #2450 which I opened (same issue).

Sorry I did not remember there was already an issue. Thanks @busshimoe

Any update on this one? Also descriptions should probably not be truncated, pleroma has a good support for long content and mastodon does so for quite a while now.

Any update on this one?

No sorry, I won't have time to implement this in the near future.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

gegeweb picture gegeweb  路  3Comments

Angedestenebres picture Angedestenebres  路  3Comments

ufm picture ufm  路  3Comments

sschueller picture sschueller  路  3Comments

zilti picture zilti  路  3Comments