Skip to content

Showcase

Few of the Extended Markdown features

Code

1
2
3
4
5
6
7
8
def insertion_sort(nums):
    for i in range(1, len(nums)):
        item_to_insert = nums[i]
        j = i - 1
        while j >= 0 and nums[j] > item_to_insert:
            nums[j + 1] = nums[j]
            j -= 1
        nums[j + 1] = item_to_insert

Emoji

๐Ÿ˜„ โค ๐Ÿ‘ ๐Ÿ’ฏ ๐Ÿ’ช ๐Ÿ‰‘ โ˜ โœˆ ๐Ÿพ ๐Ÿ™Œ ๐Ÿ’ฅ ๐Ÿ˜† ๐Ÿค˜ ๐Ÿค ๐Ÿ‘ด ๐Ÿ‘ โ›” ๐Ÿญ ๐Ÿ˜Œ โ“ ๐Ÿ˜‰ ๐Ÿ‘‹ ๐ŸŒˆ ๐Ÿ˜ด

Critic

We Uber drivers never know whom weโ€™re going to end up with as a passenger in the same car. One day, I was driving over a new bridge, the design of which was very confusingugly. Completely confounded, I mutteredActually I said it out loud, โ€œIโ€™d love to meet the geniusretard who designed this mess.โ€ With that, my passenger extended his hand in my directionI thought he wanted to choke me and said, โ€œWell, today is your very lucky day. My name is Mike, I work for the county engineerโ€™s office, and Iโ€™m the geniusobviously an irony who designed this!โ€. Surprisingly, he still gave me a tip of 2 dollars.

Keys

Enter Tab Space Up Down Page Up Home Backspace Ins

Tabls, lists & admonitions

Tasklist

  • Plans at work
    • Make vanilla pudding. Put in mayo jar. Eat in the office during the lunch break
    • Wear shirt that says โ€œLifeโ€. Hand out lemons to colleagues.
    • Hire two private investigators. Get them to follow each other.
  • Personal plans
    • Make an alcoholic beverage and name it โ€œresponsibly.โ€ Start drinking Responsibly.
    • Sneeze in front of the Pope. Get blessed.
    • Buy a horse, name it โ€œOscar Takes The Lead,โ€ enter it in horse races.
- [X] Plans at work
    * [X] Make vanilla pudding. Put in mayo jar. Eat in the office during the lunch break
    * [X] Wear shirt that says โ€œLifeโ€. Hand out lemons to colleagues.
    * [ ] Hire two private investigators. Get them to follow each other.
- [ ] Personal plans
    * [X] Make an alcoholic beverage and name it โ€œresponsibly.โ€ Start drinking Responsibly.
    * [ ] Sneeze in front of the Pope. Get blessed.
    * [ ] Buy a horse, name it โ€œOscar Takes The Lead,โ€ enter it in horse races.

Tables

Substance Description
Bombastium Rarest element in the world. Dropped into a barrel of water becomes one barrel of ice cream
Jerktonium Ingestion of jerktonium causes a bad attitude, but the effects are curable by song.
Philote The smallest possible particle, occupying no space at all.

Formulas

\[ \left(\frac{\left(\sqrt{\frac{73^2}{12x}}\sqrt{\frac{x|x|}{\log_x}}\right)}{\sqrt[3]{\frac xy}}\right) \]

Diargams

classDiagram Animal <|-- Duck Animal <|-- Fish Animal <|-- Zebra class Animal{ +int age +String gender +isMammal() +mate() } class Duck{ +String beakColor +swim() +quack() } class Fish{ -int sizeInFeet -canEat() } class Zebra{ +bool is_wild +run() }