MarkDown 태그

고방·2023년 7월 16일
0
post-thumbnail

마크다운 (Markdown)은 마크업 언어의 일종으로, 존 그루버와 아론 스워츠가 만들었다.
온갖 태그로 범벅된 HTML 문서 등과 달리, 읽기도 쓰기도 쉬운 문서 양식을 지향한다.
그루버는 마크다운으로 작성한 문서를 HTML로 변환하는 Perl 스크립트도 만들었다.
확장자는 .md 또는 .markdown을 쓰지만, 전자가 압도적으로 많이 쓰인다.

코드블럭


function syntaxHighlighting() {
  var n = 33;
  var s = "hello, こんにちは";
  console.log(s);
}

글꼴강조


* plain
* *emphasis*
  * **strong emphasis**
    * ~~strikethrough~~
* `inline code`

> Block quote. 
> *With* **some** `markdown`.

If **TeX Math** support is enabled, this is the quadratic equation: 
$-b \pm \sqrt{b^2 - 4ac} \over 2a$
  • plain
  • emphasis
    • strong emphasis
      • strikethrough
  • inline code

Block quote.
With some markdown.

If TeX Math support is enabled, this is the quadratic equation:
b±b24ac2a-b \pm \sqrt{b^2 - 4ac} \over 2a

링크


[Link](https://www.google.com)

이미지 삽입


[![마크다운](https://raw.githubusercontent.com/adam-p/markdown-here/master/src/common/images/icon24.png)](https://blog.naver.com/minid0/222776255604)

마크다운

테이블


| Tables | Are | Cool |
| ------------- |:-------------:| -----:|
| column 3 is | right-aligned | $1600 |
| column 2 is | centered | $12 |
| zebra stripes | are neat | $1 |
TablesAreCool
column 3 isright-aligned$1600
column 2 iscentered$12
zebra stripesare neat$1
| Tables | Are | 
| ------------- |:-------------:|
| column 3 is | right-aligned |
TablesAre
column 3 isright-aligned

테이블 이미지 삽입


|First Image|Second Image|
|:-:|:-:|
|![First Image](https://images.pexels.com/photos/585759/pexels-photo-585759.jpeg?h=750&w=1260)|![Second Image](https://images.pexels.com/photos/1335115/pexels-photo-1335115.jpeg?h=750&w=1260)|
First ImageSecond Image
First ImageSecond Image

유투브 동영상 삽입 및 썸네일 추가


[![][thumbnail]](https://youtu.be/Rgx8dpiPwpA "Life as an Engineer - WFH")
[thumbnail]: https://raw.githubusercontent.com/6aravind/tidbits/main/assets/images/markdown_Life%20as%20Engineer.png

이미지 주변 택스트 처리


<img align="right" width="100" height="100" src="https://media.tenor.com/images/6a136e1c2d7b30298a5b657348097a60/tenor.gif">

At the 2019 rendition of E3, an eccentric gamer in attendance interrupted Keanu Reeves' presentation of the role-playing game (RPG) Cyberpunk 2077, loudly claiming, “"You're breathtaking,"” which was directed at the actor-cum-presenter. The image macro used to build the "You're Breathtaking" meme generally features a still of Keanu Reeves pointing at someone in the audience in front of him - that someone is Peter Sark, though there are no images from Keanu's point of view that have since been used as part of the "You're Breathtaking" meme.

At the 2019 rendition of E3, an eccentric gamer in attendance interrupted Keanu Reeves' presentation of the role-playing game (RPG) Cyberpunk 2077, loudly claiming, “"You're breathtaking,"” which was directed at the actor-cum-presenter. The image macro used to build the "You're Breathtaking" meme generally features a still of Keanu Reeves pointing at someone in the audience in front of him - that someone is Peter Sark, though there are no images from Keanu's point of view that have since been used as part of the "You're Breathtaking" meme.

수식


$$f(x)= if x < x_{min} : (x/x_{min})^a$$  
$$otherwise : 0$$  
$$P(w)=U(x/2)(7/5)/Z$$  
$$p_{\theta}(x) = \int p_{\theta}(2z)p_{\theta}(y\mid k)dz$$  
$$x = argmax_k((x_t-x_u+x_v)^T*x_m)/(||x_b-x_k+x_l||)$$  

f(x)=ifx<xmin:(x/xmin)af(x)= if x < x_{min} : (x/x_{min})^a
otherwise:0otherwise : 0
P(w)=U(x/2)(7/5)/ZP(w)=U(x/2)(7/5)/Z
pθ(x)=pθ(2z)pθ(yk)dzp_{\theta}(x) = \int p_{\theta}(2z)p_{\theta}(y\mid k)dz
x=argmaxk((xtxu+xv)Txm)/(xbxk+xl)x = argmax_k((x_t-x_u+x_v)^T*x_m)/(||x_b-x_k+x_l||)

profile
💻 웹개발

1개의 댓글

comment-user-thumbnail
2023년 7월 17일

저도 개발자인데 같이 교류 많이 해봐요 ㅎㅎ! 서로 화이팅합시다!

답글 달기