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

inline code

Code block
// Not trying xss just doing examples
alert("example")

strike

sub

up

  • tal@kbin.social
    link
    fedilink
    arrow-up
    4
    ·
    edit-2
    1 year ago

    Kbin’s implementation differs from Reddit’s in at least one way that I’ve run into: Reddit permitted a link to be italicized using asterisks inside the link. Like:

    I read a [book called *Arabian Nights*](https://en.wikipedia.org/wiki/One_Thousand_and_One_Nights).
    
    

    Valid in Reddit Markdown, but in kbin’s Markdown – dunno what lemmy does – that’s not permitted, and gives this:

    I read a book called .

    You can do:

    I read a book called *[Arabian Nights](https://en.wikipedia.org/wiki/One_Thousand_and_One_Nights)*.
    
    

    Which yields this:

    I read a book called Arabian Nights.