/
❀️

Getting Start

EmojiMarkdownGetting Start
Table of contents
  • Most Popular Emojis
  • More Markdown Feature

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.Org

More 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-start
display: grid;
grid-gap: 30px;
// highlight-end
grid-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.

TablesAreCool
This is a rowwith somecontent
This is another rowwith anotherVelit 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/

Kelvin's Tech Notes