Showcase
Few of the Extended Markdown features
Code
1 2 3 4 5 6 7 8 |
|
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()
}