β€οΈ
Getting Start
Most Popular Emojis
- π₯Ί Pleading Face
- β€ Red Heart
- πΊπΈ Flag: United States
- π Face with Tears of Joy
- π₯° Smiling Face with Hearts
- π₯ Fire
- π Fireworks
- β¨ Sparkles
- π Smiling Face with Smiling Eyes
More...
Emojipedia.OrgMore Markdown Feature
Highlighting lines in code blocks
To highlight lines, wrap line with this comment before:
// highlight-start
and this after // highlight-end
.
Ensure that these comments are not indented.
md
```css.grid {// highlight-startdisplay: grid;grid-gap: 30px;// highlight-endgrid-template-columns: repeat(auto-fill, 112px);/* or this */grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));}```
css
.grid {display: grid;grid-gap: 30px;grid-template-columns: repeat(auto-fill, 112px);/* or this */grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));}
Table
Tables are responsive by default. If you need to limit line length for a cell, add a <br/>
tag to break the lines.
Tables | Are | Cool |
---|---|---|
This is a row | with some | content |
This is another row | with another | Velit ut mauris penatibus turpis commodo consectetur |
md
| Tables | Are | Cool || ------------------- | ------------ | --------------------------------------------------------- || This is a row | with some | content || This is another row | with another | Velit ut mauris penatibus <br/>turpis commodo consectetur |
More on https://notes.zander.wtf/