If you come across something that doesn’t work pop it here

  • tb_@lemmy.world
    link
    fedilink
    English
    arrow-up
    2
    ·
    edit-2
    4 months ago

    Code blocks in quotes appear a little funky.

    Some line of code

    
    > Extended quote
    > ```
    More code
    

    Further extended quote

  • can@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 months ago

    Any progress being made here? I was really hoping that not being able to view certain communities such as [email protected] would be considering bad enough of a bug to bring a little development back.

  • can@sh.itjust.works
    link
    fedilink
    English
    arrow-up
    2
    ·
    1 month ago

    I’m not sure if you’re still monitoring this or if I should make new thread.

    I just encountered a comment where they included a link with brackets in the url and it didn’t parse for me in Sync. I assumed it needed escape characters , which did make it a working link for me in app, but I got curious and checked the website and the original link worked fine there. Maybe the Lemmy web ui will escape characters in links by default?

  • Aido@lemmy.world
    link
    fedilink
    English
    arrow-up
    1
    ·
    9 days ago

    Funny stuff is happening with the spoilers in this comment, they aren’t rendering as spoilers on the first two but tapping the actual spoilers removes the broken spoiler characters around the first two lines? Really strange: https://lemmy.world/comment/10822445

    • Zagorath@aussie.zone
      link
      fedilink
      English
      arrow-up
      2
      ·
      4 months ago

      I installed Sync just to test this. To me, that’s displaying with “not” superscript but not “working”. On web, it just doesn’t work at all (this is due to the markdown library lemmy-ui uses not allowing spaces).

      Suspect ~subscript will~ also not work. Curious about struck-out text.

      • Zagorath@aussie.zone
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        4 months ago

        Okay subscript didn’t work on lemmy-ui or Sync. Struck out is fine.

        How about single-word subscript? edit: yup, works in lemmy-ui, not in Sync.

      • Zagorath@aussie.zone
        link
        fedilink
        English
        arrow-up
        1
        ·
        4 months ago

        sharing it to someone without sync

        The bang syntax will work much better for anyone on Lemmy itself, regardless of which instance they’re on or which client they use, while the URL syntax is better when users want to share a link to a community off-platform.

    • SanguinePar@lemmy.world
      link
      fedilink
      English
      arrow-up
      1
      ·
      edit-2
      4 months ago

      I think a way to make them work is to add two spaces after each line. Here’s a test…

      • Line one
      • Line two
      • Line three

      Hopefully that works.

      It did :-)

      • CrayonRosary@lemmy.world
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        4 months ago

        That’s a placebo and it’s not doing anything. Bulleted lists never need two spaces at the end of each line. You only use two spaces at the end of line that are not in bulleted or numbered lists.

        The bug is that Sync requires a blank line before you start the bulleted list. The Lemmy website doesn’t require that.

        Here is your comment with no spaces at the end of each line:

        spaces after each line. Here’s a test…

        • Line one
        • Line two
        • Line three

        See? It still works fine.

        Now here’s an example of what two spaces do.

        The first sentence below has a new line after each word but no spaces. The second sentence has two spaces and a new line after each word. The spaces force a line break to be rendered.

        This Is Not A List

        This
        Is
        Not
        A
        List

        Source of the above:

        This 
        Is 
        Not 
        A 
        List
        
        This  
        Is  
        Not  
        A  
        List
        

        This feature of markdown was implemented to prevent text from emails and such from wrapping in funny ways when pasted into a comment (or whatever). Old emails often force line breaks after 80 columns of text and it looks goofy when viewed in a modern web browser if those line breaks are kept, so they are ignored. To preserve the line breaks, you add two spaces at the end of each line. That or you might prefer to write paragraphs with a hard wrap at some column, but other people shouldn’t have to suffer that.

        Adding the two spaces to lines in a bulleted list does nothing useful, but it also doesn’t break it, so of course it works.