one thing to remember is that alot of Lemmy supports markdown

https://lemmy.world/post/1381968

one thing to remember is that alot of Lemmy supports markdown - LemmyWorld

Given that Jebora has markdown support, just throwing a few bits in here… bold and italic - li item 1 - li item 2 > Quote # heading link [Https://example.com] inline code Code block javascript // Not trying xss just doing examples alert("example") strike sub up

it works yeah!
On Connect, sub and up (which, I assume, was supposed to say sup) don’t get formatted.
Same on Jerboa for me
Lemmy too
The website or the Memmy app?
Woops, typo. Yeah Memmy!
Yeah, the sub (subscript) and up (superscript) were from Jebora’s editor, but they didn’t even render once posted

Its because they created a special syntax for ~sub~ ^up^ and

Spoiler

Test

Code Block is broken, but the rest works on kbin.
strike, sub and up doesn't seem to work on kbin?
Oh, right, I didn't see that the post continue after the code. Yeah, those three don't work either.
Everything except code block works for me on liftoff.
my screenshot from Voyager (formerly wefwef) www.imgbly.com/ib/XfKjyCmRLR.png

Thanks alot

came here to do this.
I’m so glad people still remember the alot

Oof broken link.

But for anyone who wonders, here’s the original source of the meme:

…blogspot.com/…/alot-is-better-than-you-at-everyt…

The Alot is Better Than You at Everything

As a grammatically conscientious person who frequents internet forums and YouTube, I have found it necessary to develop a few coping mechani...

~sub~ should have two ~

~~sub~

I guess ^up^ should have two ^ as well?

^^up^^

The only two things formatting makdown consistently, for now, are Jerboa and the web interfaces.

I’ve been posting a lot of poetry using some markdown witchery to format, only to realize that some interfaces show all of the markdown even inside the post itself. Jerboa will show it in the summary tile before you click in, but it does format.

Curiously enough, it only has Markdown support once you are inside the Thread:

I’m not mad at that for now, but eventually sure!
Well, you can always be the change that you want to see in this world!

One thing I've never been enthusiastic about has been Markdown's auto-renumbering support. I have never seen someone really being happy with the implementation and lots of people frustrated as they try to embed numbered items and get them renumbered.

1. First 1. Second

Yields:

  • First

  • Second

  • Usually came up on Reddit when someone wants to quote a single item in a numbered list from some external text, quotes only that, and it gets renumbered...and they don't know how to backslash-escape the period to avoid the thing:

    1\. First 1\. Second

    Yields:

    1. First

    1. Second

    It looks like kbin also does the auto-renumbering. Dunno about lemmy. Kind of the one element of Markdown that I'd be happy to see die. I don't mind having a syntax for auto-numbered lists -- I just don't think that using an actual number as prefix to indicate that that should happen is a reasonable way to go about it.

    Markdown is pretty ‘dumb’ in that it simply uses regular expressions to detect markdown tags/structures and then translates them into corresponding html elements. So when it sees subsequent lines each starting with a ‘{number}{dot}{space}’ it determines that it’s supposed to be a numbered list, so it translates that to an html ordered list. The numbers in an ordered list are not there if you look at a page source, they’re only being rendered by your browser starting with ‘1’ by default.

    With all that being said, HTML5 supports overriding default values in an ordered list, so with additional logic in the markdown parser having numbers out of order could be done.

    HTML Ordered Lists

    W3Schools offers free online tutorials, references and exercises in all the major languages of the web. Covering popular subjects like HTML, CSS, JavaScript, Python, SQL, Java, and many, many more.

    That reminds me of the threads/comments about the spoiler tagging in Lemmy being broken in many apps, hopefully that’ll be worked out sooner than later.

    This is a spoiler

    Magneto kills Dumbledore in Mordor

    I don’t believe spoilers are part of the official markdown specification. Even if markdown parsers supported it, I’d assume it would be ||this is a message||
    Yeah I guess the apps are just using regular markdown libraries so they haven’t added any “Lemmy extras” to the parsing.
    What about tables ? 1 2 3 4 5 6 7 8