Post preview
February 19 , 2021
Image
Markdown Syntax
# Relative path based on Markdown currently being written
![img](../../../assets/favicon.png)
# You can specify width
# However, it is fixed to 100% width on mobile screen
![img](../../../assets/favicon.png '#width=30%;')
Table
| Welcome | Oasis |
| ------- | -------- |
| Starter | JeongYun |
| Blog | Post |
| Gatsby | React |
Welcome | Oasis |
---|---|
Starter | JeongYun |
Blog | Post |
Gatsby | React |
Code
Code Highlight with Roboto mono font
You can write the line number to highlight like this
```js{2,3} // your code ```
function Me(_name) {
this.name = _name // highlight line this.email = `Jeongyunniim@gmail.com` // highlight line}
const jy = new Me(`JeongYun`)
console.log(jy)
// Me { name: 'JeongYun', email: 'Jeongyunniim@gmail.com' }
Inline Code
This is Inline Code
Block Quote
This is Block Quote
Math Equations
Surround your equation with $
to generate a math equation in inline mode.
$a^2 + b^2 = c^2$
Formula :
Surround your equation with $$
and new-lines to generate a math equation in display mode.
$$Gatsby \subseteq Oasis$$