미루고 미루던 블로그를 구성했다. 수년 전 티스토리 블로그를 잠시 운영했었는데 그 블로그를 다시 꺼내고 싶진 않았고, 여기저기 뒤져보다가 정적 블로그 플랫폼 Hexo를 선택하게 되었다. 거창하게 운영할 욕심은 현재 없고, 느지막이 마음먹은 공부에 대한 것 정리 및 기록, 이슈 그에 대한 해결 등 기록 위주로 포스팅을 할 계획이다. 기록 없이 개발자로 10년 가까이 일을 하면서 부족한 부분이 많았는데(매번 까먹고) 그 부분을 이제야 채워볼까 한다.


Markdown 문법 정리

Headers

1
2
3
# This is an <h1> tag
## This is an <h2> tag
###### This is an <h6> tag

Horizontal rules

1
2
3
4
5
* * *
***
*****
- - -
---------------------------------------

Emphasis

1
2
3
4
5
*This text will be italic*
_This will also be italic_
**This text will be bold**
__This will also be bold__
_You **can** combine them_

This text will be italic
This will also be italic
This text will be bold
This will also be bold
You can combine them

Lists

Unordered

1
2
* Item 1
* Item 2a
  • Item 1
    • Item 2a

Ordered

1
2
1. Item 1
1. Item 2a
  1. Item 1
    1. Item 2a

Images

1
2
![GitHub Logo](/images/logo.png)
Format: ![Alt Text](url)
1
2
http://github.com - automatic!
[GitHub](http://github.com)

Blockquotes

1
2
3
As Kanye West said:
> We're living the future so
> the present is our past.

We’re living the future so
the present is our past.

Inline code

1
2
I think you should use an
`<addr>` element here instead.

I think you should use an
<addr> element here instead.

Syntax highlighting

1
2
3
4
5
function fancyAlert(arg) {
if(arg) {
$.facebox({div:'#foo'})
}
}

Task Lists

1
2
3
4
- [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
- [x] list syntax required (any unordered or ordered list supported)
- [x] this is a complete item
- [ ] this is an incomplete item
  • @mentions, #refs, links, formatting, and tags supported
  • list syntax required (any unordered or ordered list supported)
  • this is a complete item
  • this is an incomplete item

Tables

1
2
3
4
First Header | Second Header
------------ | -------------
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
First Header Second Header
Content from cell 1 Content from cell 2
Content in the first column Content in the second column

블로그 관리 TO-DO List

  • 마크다운 문법 정리
  • Hexo 관련 명령어, Tag Plugin 정리
  • tranquilpeak 테마 관련 정리
  • Hexo Seo 설정, 댓글, update 날짜 처리 등 부족한 부분 마무리 하자