There have been some requests to make it possible for Mastodon users to create threads on Lemmy. At the moment this is not possible because Mastodon cant set the title field which is mandatory in Lemmy. The same problem affects other projects like Pleroma or Friendica (where title is optional).

It is unlikely that Mastodon would make any change in this regard, so a workaround in Lemmy would be necessary. I implemented such a workaround which makes the title optional when receiving a federated post, and uses the first line of the content instead. This workaround could also be made configurable per instance or per community.

But to be honest I am not sure the workaround is a good idea in general, as it could result in bad titles, and generally more low-quality posts. Thats why I want to know what the community thinks about it.

  • Titles could become optional for short text posts. You could allow up to 500 characters in the body field to be a stand alone post title-less, which automatically adds support for all fedimicroblog services. This would have to be a setting per community to allow title-less posts or not, including a warning that this would break compatibility with mastodon, etc.

      • @0x1C3B00DA@lemmy.ml
        link
        fedilink
        31 year ago

        But that’s just a UI issue, right? Post listings in Lemmy is essentially the same as a feed reader and I’ve used feed readers that display posts with/without titles.

        • @nutomic@lemmy.mlOP
          link
          fedilink
          31 year ago

          Could you show an example screenshot how that looks like? I cant really imagine it working in Lemmy.

          • @0x1C3B00DA@lemmy.ml
            link
            fedilink
            3
            edit-2
            1 year ago

            Sure I’ll try mocking something up in the browser devtools. On mobile, lemmy displays body text for posts (p.s. I’d like that on desktop too). What I’m talking about is just showing that in the position the title would be, still in an anchor tag so it links to the post but with body text styling instead of in a header.

            EDIT: Here’s a quick mockup.

            The first and third posts are title-less posts and, to me, look good interspersed with titled posts. To get this, I replaced the entire h5 element that serves as the post title with <a class="preview-lines" href="{{post.link}}">{{made up body text}}</a> The preview-lines CSS class applies a visual truncation so even if the text we render is too much it won’t overflow.

            I don’t know how to write Inferno templates but in Vue this would be

            <!-- this is the current markup -->
            <h5 v-if="post.title">
                <a class="text-body" title="Comments" :href="post.link">
                    {{ post.title }}
                </a>
                <button class="btn btn-link text-monospace text-muted small d-inline-block ml-2" data-tippy-content="Expand here">
                    <svg class="icon icon-inline">
                        <use xlink:href="#icon-plus-square"></use>
                        <div class="sr-only"><title>plus-square</title></div>
                    </svg>
                </button>
            </h5>
            <!-- this is new markup i'm suggesting -->
            <a v-else class="preview-lines" :href="post.link">
                {{ post.content.substring(0, 250) }}
            </a>
            
            • @nutomic@lemmy.mlOP
              link
              fedilink
              31 year ago

              So you have the same approach of generating a title from the post body. Only you do it on the frontend and not the backend. In Lemmy that might be a bit complicated because the body is already optional, and we would have to somehow encode that either title or body must be set (or both).

      • The mockup below by @0x1C3B00DA@lemmy.ml looks pretty close to how I was envisioning it. It definitely looks off, and that’s why my preferred implementation is that Mastodon (and the other microblog services) add title support. Since they won’t or aren’t, I would rather that non-local content is preserved how it was, without too significant guesswork to fill in each platforms’ fields. Titleless, but preserving the post and not having a poor title is preferable to me than an awkward title that anyone on mastodon doesn’t see and doesn’t know about.

        Allowing for people on lemmy to submit titleless posts can be allowed, since the tech would already be in the front-end to display it. Doesn’t have to be allowed, though.