• 3 Posts
  • 50 Comments
Joined 1 year ago
cake
Cake day: June 15th, 2023

help-circle






  • Oh I mean, sure, but I don’t think IP logging is the main privacy concern with spy pixels.

    I’m assuming this trick uses the user agent string and other request metadata to identify clients. Even if it didn’t recognize Jerboa as a client, it did guess that I was on mobile. That’s not possible just by tracking IPs, unless they’re cross-referencing it with other datasets. Also, I was on VPN anyway, so the IP would have been useless.

    It should be possible for clients to obfuscate/fake the metadata of image requests to make tracking with spy pixels less effective.












  • Agreed, standards are what make the Fediverse possible. Rendering posts from other platforms is already messy: we’ve all seen the posts coming from Mastodon where the title is the whole body of the post, cut at the character limit. If Lemmy starts doing its own Markdown flavor it would further degrade the integration with other Fediverse platforms.


  • Which other web services support Markdown formatting and also single line breaks? Reddit, for example, didn’t…

    Since AFAIK the main reason for this choice in standard Markdown was to make the raw .md files more readable, I can see how this isn’t necessary in Lemmy. I still see two reasons not to change this though:

    • Effort: forking and maintaining a markdown rendering library just for lemmy would take a ton of effort for a pretty small usability improvement. The dev team is already small and overloaded with work, this doesn’t seem like a good use of their time.
    • Consistency: each website having its own flavor of Markdown syntax would be pretty chaotic for users. Right now you can learn basic Markdown once and use it on Reddit, Lemmy, Github, etc. If every website did it their own way you’d have to remember all the little differences, it would get messy.

  • This is not a missing feature in Jerboa, it’s a design choice in the Markdown syntax. It’s done so that one can break up long lines in the .md file without affecting the rendered page. Markdown is a standard, and Jerboa uses an existing tool to format posts. In order to make this work for Jerboa the devs would have to break compatibility with Markdown and create their own rendering tool. They’re most likely not going to do it, and I don’t think they should.

    That’s not a problem, though, because you can already create single line breaks in Jerboa, using standard Markdown. All you have to do is add two spaces at the end of your first line, where you want your line break to be. So, if I write down:

    This is a line<space><space>
    This is another line
    

    this gets rendered to:

    This is a line
    This is another line

    There are other ways to create line breaks in Markdown:

    • Using an HTML <br/> tag
    • Using a backslash \

    but they’re not supported by all renderers. For example: the <br/> tag works in Jerboa, but not in the web UI. Double space works for me in both.