• 36 Posts
  • 33 Comments
Joined 4 years ago
cake
Cake day: June 1st, 2020

help-circle


















  • lelgenio@lemmy.mltoMemes@lemmy.mlShiny legs ✨🦵
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    edit-2
    8 months ago

    You need to write “spoiler” before the spoiler title.

    ::: spoiler Game of thrones season 8 spoiler warning
    It fucking sucks
    :::
    

    Notice you don’t see spoiler in the rendered version

    Game of thrones season 8 spoiler warning

    It fucking sucks















  • CREATE TABLE display (
        id INT PRIMARY KEY,
        display_property TEXT
    );
    
    INSERT INTO display (id, display_property)
    VALUES
    (1, 'block'),
    (2, 'inline-block'),
    (3, 'flex');
    
    CREATE TABLE divs (
        id INT PRIMARY KEY,
        inner_html TEXT,
        display INT REFERENCES display(id)
    );
    
    INSERT INTO divs (id, inner_html , display)
    VALUES
    (1, 'div1', 1),
    (2, 'div2', 2),
    (3, 'div3', 3);