create account

[Markdown] 마크다운 총정리 All in One by nand

View this thread on: hive.blogpeakd.comecency.com
· @nand · (edited)
$57.99
[Markdown] 마크다운 총정리 All in One
https://i.imgur.com/YrEE1ck.png


안녕하세요 낸드(Nand) 입니다.

`마크다운(Markdown)` 아세요?

전 스팀잇 입문하기 전에 `마크다운(Markdown)`을 조금 쓰고 있었습니다.

근데 이번 글을 작성하면서 보니 제가 쓰고 있는 기능은 반정도밖에 안됐었더라고요.

그리고, 스팀잇 내에 있는 마크다운 글들을 보니 빠진 기능이 몇가지 있더라고요. 

그래서, 이 글의 특징은:

1. 다 종합했습니다. 
**마크다운 쓰는 법을 알고 싶으면 이 글만 보면 됩니다.**  라고 감히 말씀드립니다.
2. **자주 쓰고 중요한 기능을 우선**적으로 했습니다. 뒤로 갈 수록 안봐도 됩니다.
3. 예제 보여드리고, 마크다운 코드를 바로 뒤에 썼어요.

마크다운은 2004년에 `존 그루버 (John Gruber)`가 만들었고, 이후 여러 종류가 나와있다고 하는데...

지금 제일 중요한건 스팀잇에서 쓰이냐 안쓰이냐, 쓰이면 어떻게 쓰냐 아니겠어요? 
그래서 바로 실전 예제로 넘어가겠습니다.


## Space and Enter 띄어쓰기와 엔터

기본적인건데요, 띄어쓰기(space)       여러 번은 한번과 같습니다. 
엔터를 한번 치면, 글이 붙어요.

엔터를 두번 치면 단락이 바뀌죠.


엔터 여러번 친다고 여러 줄이 띄어지는건 아니에요.

    기본적인건데요, 띄어쓰기(space)       여러 번은 한번과 같습니다. 
    엔터를 한번 치면, 글이 붙어요.

    엔터를 두번 치면 단락이 바뀌죠.


	엔터 여러번 친다고 여러 줄이 띄어지는건 아니에요.


* 기본적으로 형식에 맞게 쓰시고, 가끔 강제로 여러 줄을 맘대로 띄고 싶다 하면 `<br/>`을 사용하세요.

---
## Header 헤더, 제목

# 헤더1
## 헤더2
### 헤더3
#### 헤더4
##### 헤더5
###### 헤더6

    # 헤더1
    ## 헤더2
    ### 헤더3
    #### 헤더4
    ##### 헤더5
    ###### 헤더6

헤더는 6단계가 있습니다. HTML의 `<H1>` ... `<H6>`에 대응됩니다.
이것만 잘 써도 글이 좀 더 깔끔합니다.

---
## List 리스트, 목록

### Ordered list 번호 (숫자) 목록

1. 첫 번째
2. 두 번째
3. 세 번째
1. 1을 다시 써도 네 번째

```
1. 첫 번째
2. 두 번째
3. 세 번째
1. 1을 다시 써도 네 번째
```
자동으로 숫자가 바뀌는게 신기하죠. 

### Unordered list 글머리기호 목록

- 빼기를 써도
	- 빼기를 써도
		- 빼기를 써도
* 곱하기를 써도
    * 곱하기를 써도
    	* 곱하기를 써도
+ 더하기를 써도
    + 더하기를 써도
    	+ 더하기를 써도


```
- 빼기를 써도
	- 빼기를 써도
		- 빼기를 써도
* 곱하기를 써도
    * 곱하기를 써도
    	* 곱하기를 써도
+ 더하기를 써도
    + 더하기를 써도
    	+ 더하기를 써도
```

1. 이렇게
- 여러개를
    2. 섞어서
    3. 쓰면
        * 어떻게
        + 될까요
    1. 음

```

1. 이렇게
- 여러개를
    2. 섞어서
    3. 쓰면
        * 어떻게
        + 될까요
    1. 음
```

-, *, + 중 하나만 쓰는 걸로 해요. -가 편합니다. 시프트키 안눌러도 되니깐.

---
### Emphasis 강조

_이탤릭_ , *이탤릭*
__볼드__ **볼드**
___이탤릭볼드___
***이탤릭볼드***
**이렇게 _할수도_**
~~취소선~~

    _이탤릭_ , *이탤릭*
    __볼드__ **볼드**
    ___이탤릭볼드___
    ***이탤릭볼드***
    **이렇게 _할수도_**
	~~취소선~~

강조 3인방은 이탤릭, 볼드, 밑줄인데...
밑줄은 마크다운엔 지원이 없고, `<u>`도 안먹히네요. 

---
## Link 링크
[스팀잇링크](https://steemit.com)

    [스팀잇링크](https://steemit.com)

https://steemit.com

	https://steemit.com

그냥 주소를 넣어도 자동으로 링크가 생깁니다. 

---
## 이미지

![](https://steemit.com/images/favicons/apple-touch-icon-57x57.png )

	![](https://steemit.com/images/favicons/apple-touch-icon-57x57.png)

또한, 마크다운과 별도로, 스팀잇에서는 그냥 URL 쓰면 이미지가 보입니다.

https://steemit.com/images/favicons/apple-touch-icon-57x57.png

	https://steemit.com/images/favicons/apple-touch-icon-57x57.png

---
## 동영상

이것도 마크다운과 별개인데, 스팀잇에서는 URL 쓰면 동영상이 바로 보입니다.

https://youtu.be/aKTH0o8AEtQ

    https://youtu.be/aKTH0o8AEtQ

---
## 구분선

---
***
___
* * *
*****
- - -
-------------------

	---
    ***
    ___
    * * *
    *****
    - - -
	-------------------
	

모두 다 HTML의 `<hr>`에 대응됩니다. 사실 `---` 나 `***` 정도로 쓰면 되고, 
나머지는 구분선 만드려는 의도가 아닌데 구분선이 만들어지지 않게 조심만 하면 될거 같군요.


---
## quoting code 코드 인용

`코드 인용`

```
블록인용
```

---
	`코드`
    
    ```
    블록인용
    ```    


블록인용은 `<pre>`에 대응되는거죠.

&nbsp;&nbsp;&nbsp;&nbsp;이렇게 앞에 space 4칸을 띄어서 사용해도 블록 인용이 됩니다.

저 문자는 `grave`라고 키보드상 숫자 1 옆에 물결`~` 있죠. 시프트키 안치고 누르는 그겁니다. \` 이거요


---
## quoting text 인용구

> 인용구는 이렇게
>> 여러단도 가능
>>> 3단

    > 인용구는 이렇게
    >> 여러단도 가능
    >>> 3단


---
## Table 표

1 | 2 | 3
--- | --- | ---
표 쓸때는 | 중간 두번째줄에 | `---` 이거 필요합니다.


    1 | 2 | 3
    --- | --- | ---
    표 쓸때는 | 중간 두번째줄에 | `---` 이거 필요합니다.

---
## 마크다운 포맷 무시하기

*이건데* .. \*이렇게\*

	*이건데* .. \*이렇게\*

지금처럼 마크다운 설명할 때 유용한 기능인데요.
앞에 backslash \ 를 달아주는거죠.
혹은 블록인용을 사용하는 것도 방법입니다.


## emoji 이모지

&#128525;

	&#128525;
    
더 많은 이모지는 관련 글을 참고해주세요.

https://steemit.com/steemkr-guide/@snow-airline/steemkr-quick-start-guide

---
## 추가

스팀잇 자체 기능이죠. 
`@`을 달면 계정 링크가 생성되고, `#`을 달면 태그가 됩니다.

@nand, #kr

	@nand, #kr

---
#### 참조: 
https://gist.github.com/ihoneymon/652be052a0727ad59601
http://blog.kalkin7.com/2014/02/10/lets-write-using-markdown/

---

잘 보셨으면 upvote 해주시고요. 
follow 환영입니다.

@nand 였습니다.
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 89 others
👎  ,
properties (23)
authornand
permlinkmarkdown
categorykr
json_metadata{"tags":["kr","steemit","kr-newbie","steemkr-guide","guide"],"users":["nand"],"image":["https://i.imgur.com/YrEE1ck.png","https://steemit.com/images/favicons/apple-touch-icon-57x57.png","https://img.youtube.com/vi/aKTH0o8AEtQ/0.jpg"],"links":["https://steemit.com","https://youtu.be/aKTH0o8AEtQ","https://steemit.com/steemkr-guide/@snow-airline/steemkr-quick-start-guide","https://gist.github.com/ihoneymon/652be052a0727ad59601","http://blog.kalkin7.com/2014/02/10/lets-write-using-markdown/"],"app":"steemit/0.1","format":"markdown"}
created2017-06-25 11:31:15
last_update2017-06-25 21:00:21
depth0
children149
last_payout2017-07-02 11:31:15
cashout_time1969-12-31 23:59:59
total_payout_value47.556 HBD
curator_payout_value10.432 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length3,844
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,030,152
net_rshares5,307,615,229,576
author_curate_reward""
vote details (155)
@anabolic ·
덕분에 스팀 초보자 잘 배워 갑니다 &#128525;
properties (22)
authoranabolic
permlinkre-nand-markdown-20180128t095505236z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-28 09:55:06
last_update2018-01-28 09:55:06
depth1
children2
last_payout2018-02-04 09:55:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation1,063,474,838,329
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,962,931
net_rshares0
@nand ·
감사합니다. 이것도 읽어보세요
https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-anabolic-re-nand-markdown-20180128t181321411z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-01-28 18:13:24
last_update2018-01-28 18:13:24
depth2
children1
last_payout2018-02-04 18:13:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,067,245
net_rshares0
@anabolic ·
유용한 글 잘 읽었습니다. 포스팅 할 때 정말 고심을 많이 해야겠군요!
properties (22)
authoranabolic
permlinkre-nand-re-anabolic-re-nand-markdown-20180129t005436695z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-29 00:54:39
last_update2018-01-29 00:54:39
depth3
children0
last_payout2018-02-05 00:54:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length39
author_reputation1,063,474,838,329
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,144,139
net_rshares0
@ansongazua · (edited)
좋은 정보 감사합니다! 너무 유용하게 읽은 글이라 퍼가도 될까요??
properties (22)
authoransongazua
permlinkre-nand-markdown-20180304t102010330z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-04 10:20:12
last_update2018-03-04 10:20:42
depth1
children2
last_payout2018-03-11 10:20:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length37
author_reputation24,988,134,702
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,099,470
net_rshares0
@nand ·
네 오래된 글이라 리스팀응 안되지만, 얼마든지 마음대로 링크하셔도 됩니다.
properties (22)
authornand
permlinkre-ansongazua-re-nand-markdown-20180304t155931454z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-04 15:59:33
last_update2018-03-04 15:59:33
depth2
children1
last_payout2018-03-11 15:59:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,162,374
net_rshares0
@ansongazua ·
네 댓글 감사합니다~~!
properties (22)
authoransongazua
permlinkre-nand-re-ansongazua-re-nand-markdown-20180305t044431927z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-05 04:44:33
last_update2018-03-05 04:44:33
depth3
children0
last_payout2018-03-12 04:44:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation24,988,134,702
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,284,586
net_rshares0
@asbear ·
오오... 개발툴이나 개발관련 웹사이트에서 쓰던 마크다운을 잘 설명해주셨네요!! 좋은 글 감사드립니다.
👍  
properties (23)
authorasbear
permlinkre-nand-markdown-20170728t115558890z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-28 11:55:57
last_update2017-07-28 11:55:57
depth1
children1
last_payout2017-08-04 11:55:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation76,617,948,082,616
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,012,107
net_rshares0
author_curate_reward""
vote details (1)
@nand ·
이거저거 다 설명하느라 이제보면 좀 난잡하게 설명한것도 같아요.
좋게 봐주셔서 감사합니다
properties (22)
authornand
permlinkre-asbear-re-nand-markdown-20170729t173141562z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-29 17:31:42
last_update2017-07-29 17:31:42
depth2
children0
last_payout2017-08-05 17:31:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,137,914
net_rshares0
@attacksong ·
**꿀팁** 감사합니다!!!
properties (22)
authorattacksong
permlinkre-nand-markdown-20180130t031904963z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-30 03:19:06
last_update2018-01-30 03:19:06
depth1
children1
last_payout2018-02-06 03:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation107,752,471,930
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,451,208
net_rshares0
@nand ·
감사합니다. 이것도 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-attacksong-re-nand-markdown-20180130t151016954z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-01-30 15:10:18
last_update2018-01-30 15:10:18
depth2
children0
last_payout2018-02-06 15:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,592,945
net_rshares0
@binterest ·
잘 보고 갑니다 ^^
properties (22)
authorbinterest
permlinkre-nand-markdown-20180226t090927963z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-26 09:09:30
last_update2018-02-26 09:09:30
depth1
children1
last_payout2018-03-05 09:09:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation222,203,475,931
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,548,745
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-binterest-re-nand-markdown-20180315t081211078z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-15 08:12:12
last_update2018-03-15 08:12:12
depth2
children0
last_payout2018-03-22 08:12:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,546,020
net_rshares0
@biscuitbox ·
어제 가입했는데 도움이 많이 되었습니다. 좋은 글 감사합니다 &#128515;
properties (22)
authorbiscuitbox
permlinkre-nand-markdown-20180127t074046698z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-27 07:40:45
last_update2018-01-27 07:40:45
depth1
children1
last_payout2018-02-03 07:40:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation0
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,675,187
net_rshares0
@nand ·
감사합니다. 이것도 읽어보세요
https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-biscuitbox-re-nand-markdown-20180128t173204422z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-01-28 17:32:06
last_update2018-01-28 17:32:06
depth2
children0
last_payout2018-02-04 17:32:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,058,974
net_rshares0
@bombit ·
좋은글 감사합니다..^^ 도움이 많이 됐어요
properties (22)
authorbombit
permlinkre-nand-markdown-20180216t151304387z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-16 15:13:06
last_update2018-02-16 15:13:06
depth1
children1
last_payout2018-02-23 15:13:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation221,764,854,737
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,026,510
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-bombit-re-nand-markdown-20180216t191240176z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-16 19:12:42
last_update2018-02-16 19:12:42
depth2
children0
last_payout2018-02-23 19:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,074,065
net_rshares0
@carrotcake ·
리스팀했습니다🐣🐣🐣
properties (22)
authorcarrotcake
permlinkre-nand-markdown-20170626t172443684z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 17:24:42
last_update2017-06-26 17:24:42
depth1
children1
last_payout2017-07-03 17:24:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation29,937,464,906,410
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,208,005
net_rshares0
@nand ·
감사합니다 :)
properties (22)
authornand
permlinkre-carrotcake-re-nand-markdown-20170627t004630476z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-27 00:46:30
last_update2017-06-27 00:46:30
depth2
children0
last_payout2017-07-04 00:46:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,259,617
net_rshares0
@crevater1 ·
newbie 입니다. 많은 도움이 되었습니다. 좋은 팁 감사합니다. upvote 해 드렸어요.
properties (22)
authorcrevater1
permlinkre-nand-markdown-20180327t030311532z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-27 03:03:12
last_update2018-03-27 03:03:12
depth1
children1
last_payout2018-04-03 03:03:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation13,996,830,567
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,812,275
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-crevater1-re-nand-markdown-20180329t115100729z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-29 11:51:06
last_update2018-03-29 11:51:06
depth2
children0
last_payout2018-04-05 11:51:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,263,389
net_rshares0
@cubo ·
정말 유용합니다! 감사합니다!
properties (22)
authorcubo
permlinkre-nand-markdown-20170626t114524652z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 11:45:27
last_update2017-06-26 11:45:27
depth1
children1
last_payout2017-07-03 11:45:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation10,854,026,448,802
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,167,346
net_rshares0
@nand ·
고맙습니다~ 유용하게 쓰세요!
properties (22)
authornand
permlinkre-cubo-re-nand-markdown-20170626t135221074z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 13:52:51
last_update2017-06-26 13:52:51
depth2
children0
last_payout2017-07-03 13:52:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,181,905
net_rshares0
@dodge3507 ·
$0.07
좋은 글 감사합니다~
+를 하자면
강제개행이 제대로 안먹히는 경우
엔터치고```&nbsp;```하고 다시 엔터치면 잘됩니다.
##### 예를들어<br/>
이런 경우에는
##### 이렇게하면
&nbsp;
잘됩니다.
```
##### 예를들어<br/>
이런 경우에는
##### 이렇게하면
&nbsp;
잘됩니다.
```
👍  
properties (23)
authordodge3507
permlinkre-nand-markdown-20180211t142536207z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-11 14:25:36
last_update2018-02-11 14:25:36
depth1
children2
last_payout2018-02-18 14:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.055 HBD
curator_payout_value0.017 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length175
author_reputation144,135,866,656
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,683,071
net_rshares10,318,329,844
author_curate_reward""
vote details (1)
@nand ·
꿀팁 감사합니다~!
properties (22)
authornand
permlinkre-dodge3507-re-nand-markdown-20180211t150347438z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-11 15:03:48
last_update2018-02-11 15:03:48
depth2
children1
last_payout2018-02-18 15:03:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,691,010
net_rshares0
@dodge3507 ·
굳이 저럴필요없이 밑에 문장에 br해도 되네요
```
#### 이렇게
<br> 말이죠
```
#### 이렇게
<br> 말이죠
👍  
properties (23)
authordodge3507
permlinkre-nand-re-dodge3507-re-nand-markdown-20180211t195605903z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-11 19:56:06
last_update2018-02-11 19:56:06
depth3
children0
last_payout2018-02-18 19:56:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length69
author_reputation144,135,866,656
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,746,113
net_rshares2,212,733,196
author_curate_reward""
vote details (1)
@emmaa ·
잘배워갑니다.^^
오늘저녁에 시험해봐야겠어요.
properties (22)
authoremmaa
permlinkre-nand-markdown-20180131t053855101z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-31 05:38:57
last_update2018-01-31 05:38:57
depth1
children1
last_payout2018-02-07 05:38:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation287,946,143,023
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,766,953
net_rshares0
@nand ·
감사합니다. 이것도 읽어보세요
https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-emmaa-re-nand-markdown-20180202t084127527z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-02 08:41:30
last_update2018-02-02 08:41:30
depth2
children0
last_payout2018-02-09 08:41:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length82
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,347,819
net_rshares0
@feeltheair ·
이것도 잘 모르고 포스팅하고있었네요 하하 감사합니다
properties (22)
authorfeeltheair
permlinkre-nand-markdown-20180219t073908307z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-19 07:39:09
last_update2018-02-19 07:39:09
depth1
children1
last_payout2018-02-26 07:39:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation2,931,841,891,660
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,723,253
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-feeltheair-re-nand-markdown-20180220t194505774z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-20 19:45:06
last_update2018-02-20 19:45:06
depth2
children0
last_payout2018-02-27 19:45:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,150,690
net_rshares0
@frduke ·
이모티콘이랑 글씨체 궁금한게 많았는데, 감사합니다 ㅎㅎ
properties (22)
authorfrduke
permlinkre-nand-markdown-20170629t010510899z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-29 01:05:12
last_update2017-06-29 01:05:12
depth1
children1
last_payout2017-07-06 01:05:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length30
author_reputation172,163,787,441
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,555,903
net_rshares0
@nand ·
도움이 되셨다니 보람이 있습니다. 감사해요 ㅎㅎ
properties (22)
authornand
permlinkre-frduke-re-nand-markdown-20170629t010847398z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-29 01:09:15
last_update2017-06-29 01:09:15
depth2
children0
last_payout2017-07-06 01:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,556,267
net_rshares0
@geusgod ·
한방에 정리끝! 수고하셨습니다~^^ 좋은글은 널리 널리 퍼져야 되겠죠? ㅎㅎ
properties (22)
authorgeusgod
permlinkre-nand-markdown-20170625t123249886z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:32:51
last_update2017-06-25 12:32:51
depth1
children1
last_payout2017-07-02 12:32:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length42
author_reputation305,686,699,200
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,035,783
net_rshares0
@nand ·
감사합니다. 힘이 나는군요 ㅎㅎ
properties (22)
authornand
permlinkre-geusgod-re-nand-markdown-20170625t124730015z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:47:33
last_update2017-06-25 12:47:33
depth2
children0
last_payout2017-07-02 12:47:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,037,263
net_rshares0
@ggsuperman ·
잘보고 갑니다.
properties (22)
authorggsuperman
permlinkre-nand-markdown-20180207t071602335z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-07 07:16:03
last_update2018-02-07 07:16:03
depth1
children1
last_payout2018-02-14 07:16:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation949,892,404
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,598,481
net_rshares0
@nand · (edited)
감사합니다. 이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-ggsuperman-re-nand-markdown-20180211t150451987z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-11 15:04:51
last_update2018-02-11 16:19:42
depth2
children0
last_payout2018-02-18 15:04:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,691,200
net_rshares0
@ghdcks10 ·
좋은글 감사합니당 ㅎ 늦게서야 보게 됐네요 ^^
properties (22)
authorghdcks10
permlinkre-nand-markdown-20180213t025403603z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-13 02:54:06
last_update2018-02-13 02:54:06
depth1
children1
last_payout2018-02-20 02:54:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation9,882,113,284,399
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,090,760
net_rshares0
@nand ·
감사합니다. 
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-ghdcks10-re-nand-markdown-20180214t065456049z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-14 06:54:57
last_update2018-02-14 06:54:57
depth2
children0
last_payout2018-02-21 06:54:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length101
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,407,487
net_rshares0
@golbang ·
초보분들이 항상 궁금해하는 정보입니다. 감사합니다.
properties (22)
authorgolbang
permlinkre-nand-markdown-20170625t131011578z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 13:10:03
last_update2017-06-25 13:10:03
depth1
children1
last_payout2017-07-02 13:10:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation35,663,106,532,487
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,039,675
net_rshares0
@nand · (edited)
저도 감사합니다 :)
properties (22)
authornand
permlinkre-golbang-re-nand-markdown-20170625t131335471z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 13:13:36
last_update2017-06-25 13:13:57
depth2
children0
last_payout2017-07-02 13:13:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,040,048
net_rshares0
@goldenman ·
정리 감사드립니다.
개인적으로 궁금한게 있는데요..
link 작성 시 '새창으로 열리는 링크'는 만들 수 없나요?!
properties (22)
authorgoldenman
permlinkre-nand-markdown-20170625t122805445z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:28:18
last_update2017-06-25 12:28:18
depth1
children1
last_payout2017-07-02 12:28:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length64
author_reputation21,154,937,938,746
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,035,320
net_rshares0
@nand ·
새창 링크 html 태그로 만들 수 있는데요. 
스팀잇에선 안해봐서 실험 해보고 새 포스팅 쓸게요~
properties (22)
authornand
permlinkre-goldenman-re-nand-markdown-20170625t124052468z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:40:57
last_update2017-06-25 12:40:57
depth2
children0
last_payout2017-07-02 12:40:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length55
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,036,589
net_rshares0
@hyndai ·
훌륭한 정보네요 감사합니다
properties (22)
authorhyndai
permlinkre-nand-markdown-20170625t132026353z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 13:20:27
last_update2017-06-25 13:20:27
depth1
children1
last_payout2017-07-02 13:20:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation416,364,453,658
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,040,788
net_rshares0
@nand ·
칭찬 감사합니다 :)
properties (22)
authornand
permlinkre-hyndai-re-nand-markdown-20170625t135009286z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 13:50:12
last_update2017-06-25 13:50:12
depth2
children0
last_payout2017-07-02 13:50:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,043,917
net_rshares0
@hyunwungjae ·
도움이 많이 됐습니다. 고맙습니다. ^^
properties (22)
authorhyunwungjae
permlinkre-nand-markdown-20180208t020248189z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-08 02:02:48
last_update2018-02-08 02:02:48
depth1
children2
last_payout2018-02-15 02:02:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation1,208,858,474,977
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,799,385
net_rshares0
@nand · (edited)
감사합니다. 이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-hyunwungjae-re-nand-markdown-20180211t161907368z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-11 16:19:09
last_update2018-02-11 16:19:24
depth2
children1
last_payout2018-02-18 16:19:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,705,265
net_rshares0
@hyunwungjae ·
고맙습니다. ^^
properties (22)
authorhyunwungjae
permlinkre-nand-re-hyunwungjae-re-nand-markdown-20180212t012057308z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-12 01:20:54
last_update2018-02-12 01:20:54
depth3
children0
last_payout2018-02-19 01:20:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation1,208,858,474,977
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id36,800,556
net_rshares0
@ijino ·
아앗 찾고있던 정보입니다. html처럼 할 수 있는 방법 없나 궁금했는데... 감사해요!
properties (22)
authorijino
permlinkre-nand-markdown-20170708t162400431z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-08 16:24:00
last_update2017-07-08 16:24:00
depth1
children1
last_payout2017-07-15 16:24:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length49
author_reputation315,231,621,401
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,769,727
net_rshares0
@nand ·
많은 도움 되시길 바랍니다.
properties (22)
authornand
permlinkre-ijino-re-nand-markdown-20170708t180724856z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-08 18:08:09
last_update2017-07-08 18:08:09
depth2
children0
last_payout2017-07-15 18:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,779,847
net_rshares0
@ineedthesleep ·
우와 고민하고있던 것인데 명쾌하게 해결되네요. 왜 카운팅이 1로 변하는지 몰랐는데 엔터키때문이었군요. 감사합니다.
properties (22)
authorineedthesleep
permlinkre-nand-markdown-20170627t185453319z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-27 18:54:54
last_update2017-06-27 18:54:54
depth1
children1
last_payout2017-07-04 18:54:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length63
author_reputation285,246,442,983
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,372,227
net_rshares0
@nand ·
카운팅이라는건 엔터 여러번 쳐도 하나로 적용되는 걸 말하시나요?
도움이 되셨다니 고맙습니다 ~
properties (22)
authornand
permlinkre-ineedthesleep-re-nand-markdown-20170628t024745829z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-28 02:47:45
last_update2017-06-28 02:47:45
depth2
children0
last_payout2017-07-05 02:47:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,421,166
net_rshares0
@jcjchul ·
오늘 가입하고 인사글 써보는데 이런 내용을 먼저 보고 쓸걸 그랬네요.
초보들 위해서 글을 잘 정리해주셔서 감사합니다.~~~
properties (22)
authorjcjchul
permlinkre-nand-markdown-20180610t104548683z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-06-10 10:45:51
last_update2018-06-10 10:45:51
depth1
children0
last_payout2018-06-17 10:45:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation19,077,066,244
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id60,122,955
net_rshares0
@jinsukim ·
정말 훌륭한 정보네요! 감사합니다!
properties (22)
authorjinsukim
permlinkre-nand-markdown-20170626t053911558z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:39:15
last_update2017-06-26 05:39:15
depth1
children1
last_payout2017-07-03 05:39:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation379,285,703,458
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,139,450
net_rshares0
@nand ·
감사해요~ ㅎㅎ
properties (22)
authornand
permlinkre-jinsukim-re-nand-markdown-20170627t015245294z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-27 01:53:18
last_update2017-06-27 01:53:18
depth2
children0
last_payout2017-07-04 01:53:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,266,131
net_rshares0
@jjww9105 ·
이거 스크랩 어떻게 하나요?
좋은 글입니다 감사합니다
properties (22)
authorjjww9105
permlinkre-nand-markdown-20180704t172648981z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-07-04 17:26:51
last_update2018-07-04 17:26:51
depth1
children0
last_payout2018-07-11 17:26:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation47,370,971,508
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id63,415,796
net_rshares0
@kimegggg ·
와우 제일 정리 잘 돼 있는거 같아요 @.@
properties (22)
authorkimegggg
permlinkre-nand-markdown-20180130t134542957z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-30 13:45:39
last_update2018-01-30 13:45:39
depth1
children1
last_payout2018-02-06 13:45:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation29,721,693,774,399
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,575,328
net_rshares0
@nand ·
감사합니다. 이것도 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-kimegggg-re-nand-markdown-20180130t151110343z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-01-30 15:11:12
last_update2018-01-30 15:11:12
depth2
children0
last_payout2018-02-06 15:11:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,593,144
net_rshares0
@kimhyeran ·
아직은 읽어봐도 헷갈리지만 엄청 유용한 글 같네요!! ㅎㅎ
properties (22)
authorkimhyeran
permlinkre-nand-markdown-20170625t120815791z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:08:09
last_update2017-06-25 12:08:09
depth1
children1
last_payout2017-07-02 12:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation3,713,302,996,267
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,033,468
net_rshares0
@nand ·
필요할 때마다 찾아보시면 금방 익히실거에요 ㅎㅎ
properties (22)
authornand
permlinkre-kimhyeran-re-nand-markdown-20170625t123227177z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:32:27
last_update2017-06-25 12:32:27
depth2
children0
last_payout2017-07-02 12:32:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length26
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,035,743
net_rshares0
@kimsungmin ·
감사드립니다. 와~ 여기서 제가 찾던걸 보네요.. 한참 찾았는데.. 
팔로우하고 갑니다~~ 많이 도와 주세요^^
properties (22)
authorkimsungmin
permlinkre-nand-markdown-20170629t121529272z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-29 12:14:39
last_update2017-06-29 12:14:39
depth1
children0
last_payout2017-07-06 12:14:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length62
author_reputation61,982,286,851,041
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,614,776
net_rshares0
@kimsungmin ·
리스팀 할께요.. 초보라 두고두고 봐야할듯요.. 고맙습니당^^
properties (22)
authorkimsungmin
permlinkre-nand-markdown-20170629t122151003z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-29 12:21:00
last_update2017-06-29 12:21:00
depth1
children2
last_payout2017-07-06 12:21:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation61,982,286,851,041
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,615,472
net_rshares0
@nand ·
리스팀 감사합니다! 저도 뉴비라 서로서로 돕는거죠! ^^
properties (22)
authornand
permlinkre-kimsungmin-re-nand-markdown-20170629t123012802z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-29 12:30:12
last_update2017-06-29 12:30:12
depth2
children1
last_payout2017-07-06 12:30:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length31
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,616,388
net_rshares0
@kimsungmin ·
네.. 저한테 필요한 정보라 도움이 많이 될꺼 같습니다. 감사합니다.  서로 돕는다는말 좋습니다 ^^
properties (22)
authorkimsungmin
permlinkre-nand-re-kimsungmin-re-nand-markdown-20170629t130745913z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-29 13:06:57
last_update2017-06-29 13:06:57
depth3
children0
last_payout2017-07-06 13:06:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation61,982,286,851,041
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,620,526
net_rshares0
@kublock ·
유용한 정보 제공해주셔서 감사합니다 :)
properties (22)
authorkublock
permlinkre-nand-markdown-20180315t052841151z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-15 05:28:54
last_update2018-03-15 05:28:54
depth1
children1
last_payout2018-03-22 05:28:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length22
author_reputation236,685,764,100
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,522,639
net_rshares0
@nand ·
쿠블에서 오셨군요. 감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-kublock-re-nand-markdown-20180315t081306460z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-15 08:13:12
last_update2018-03-15 08:13:12
depth2
children0
last_payout2018-03-22 08:13:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length111
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,546,148
net_rshares0
@kwonjeongju ·
많은 도움이 되는 글 감사합시다^^
properties (22)
authorkwonjeongju
permlinkre-nand-markdown-20170625t115556638z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 11:56:00
last_update2017-06-25 11:56:00
depth1
children1
last_payout2017-07-02 11:56:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length19
author_reputation675,820,101,257
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,032,345
net_rshares0
@nand ·
도움이 되셨다니 감사합니다
properties (22)
authornand
permlinkre-kwonjeongju-re-nand-markdown-20170625t123136111z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:31:36
last_update2017-06-25 12:31:36
depth2
children0
last_payout2017-07-02 12:31:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length14
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,035,650
net_rshares0
@lee5 ·
예제와 함께 정리해주셔서 이해가 쏙쏙 됩니다.^^
properties (22)
authorlee5
permlinkre-nand-markdown-20170626t051542686z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:15:42
last_update2017-06-26 05:15:42
depth1
children1
last_payout2017-07-03 05:15:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation11,251,592,817,285
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,137,593
net_rshares0
@nand ·
뿌듯하군요. 고맙습니다 ^^
properties (22)
authornand
permlinkre-lee5-re-nand-markdown-20170626t052335733z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:23:36
last_update2017-06-26 05:23:36
depth2
children0
last_payout2017-07-03 05:23:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,138,205
net_rshares0
@letsyell ·
감사합니다
properties (22)
authorletsyell
permlinkre-nand-markdown-20180330t071913839z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-30 07:19:12
last_update2018-03-30 07:19:12
depth1
children1
last_payout2018-04-06 07:19:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation0
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id47,410,476
net_rshares0
@nand ·
감사합니다
properties (22)
authornand
permlinkre-letsyell-re-nand-markdown-20180510t040912958z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-05-10 04:09:15
last_update2018-05-10 04:09:15
depth2
children0
last_payout2018-05-17 04:09:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,878,760
net_rshares0
@lljslove ·
좋은 글 감사합니다.
덕분에 많은 것을 배우고 갑니다 :)
properties (22)
authorlljslove
permlinkre-nand-markdown-20180220t134848391z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-20 13:48:48
last_update2018-02-20 13:48:48
depth1
children1
last_payout2018-02-27 13:48:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation18,827,605
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,075,623
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-lljslove-re-nand-markdown-20180220t194720589z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-20 19:47:21
last_update2018-02-20 19:47:21
depth2
children0
last_payout2018-02-27 19:47:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,151,153
net_rshares0
@minari ·
엊그제 가입했는데, 정말 유용한 정보입니다. 와드 박고 갑니다. ^^
properties (22)
authorminari
permlinkre-nand-markdown-20170625t144045702z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 14:40:06
last_update2017-06-25 14:40:06
depth1
children1
last_payout2017-07-02 14:40:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation18,256,774,154,134
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,049,759
net_rshares0
@nand ·
감사합니다. 유용한 팁이 있으면 앞으로도 많이 공유 할게요 :)
properties (22)
authornand
permlinkre-minari-re-nand-markdown-20170625t154015180z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 15:40:18
last_update2017-06-25 15:40:18
depth2
children0
last_payout2017-07-02 15:40:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,056,756
net_rshares0
@moonm00n ·
정말 잘봤습니다~ 감사합니다!! 보팅은 최신글에 하겠습니다~~
properties (22)
authormoonm00n
permlinkre-nand-markdown-20180226t022108048z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-26 02:21:09
last_update2018-02-26 02:21:09
depth1
children1
last_payout2018-03-05 02:21:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation4,055,790,042,764
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,474,953
net_rshares0
@nand ·
보팅을 최신글에 오셔서까지 ㅎㅎ 감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-moonm00n-re-nand-markdown-20180315t081140408z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-15 08:11:42
last_update2018-03-15 08:11:42
depth2
children0
last_payout2018-03-22 08:11:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length118
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,545,951
net_rshares0
@mrchypark ·
좋은 내용이 리스팀이 안되는 군요ㅠ_ㅠ 내용 정리 감사합니다!
properties (22)
authormrchypark
permlinkre-nand-markdown-20180307t020730486z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-07 02:07:30
last_update2018-03-07 02:07:30
depth1
children1
last_payout2018-03-14 02:07:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation255,985,435
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,756,875
net_rshares0
@nand ·
7일 지난 글은 리스팀도 안되고 보팅도 안됩니다.

이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-mrchypark-re-nand-markdown-20180315t081238237z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-15 08:12:42
last_update2018-03-15 08:12:42
depth2
children0
last_payout2018-03-22 08:12:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length122
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,546,089
net_rshares0
@mystory03 ·
뉴비입니다. 하나 하나 찾아보면서 글을 쓰는데, 정말 도움이 많이 되어서 감사한 마음에 늦었지만 댓글 남기고 갑니다!^^
properties (22)
authormystory03
permlinkre-nand-markdown-20180125t102142414z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-25 10:21:42
last_update2018-01-25 10:21:42
depth1
children1
last_payout2018-02-01 10:21:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation329,073,198,426
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,164,126
net_rshares0
@nand ·
도움이 되셨다니 감사합니다!! 😎
properties (22)
authornand
permlinkre-mystory03-re-nand-markdown-20180125t124823737z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-25 12:48:27
last_update2018-01-25 12:48:27
depth2
children0
last_payout2018-02-01 12:48:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,193,659
net_rshares0
@notitled ·
좋은 글 감사합니다!
properties (22)
authornotitled
permlinkre-nand-markdown-20180123t075221763z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-23 07:52:24
last_update2018-01-23 07:52:24
depth1
children1
last_payout2018-01-30 07:52:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation9,601,082
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id31,587,610
net_rshares0
@nand ·
네 감사합니다 ~
properties (22)
authornand
permlinkre-notitled-re-nand-markdown-20180125t123318176z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-25 12:33:21
last_update2018-01-25 12:33:21
depth2
children0
last_payout2018-02-01 12:33:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length9
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,190,308
net_rshares0
@oldtaste ·
요거 프린트 해서 붙여놓고 싶네요 &#128561;
properties (22)
authoroldtaste
permlinkre-nand-markdown-20170625t140727491z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 14:07:27
last_update2017-06-25 14:07:27
depth1
children1
last_payout2017-07-02 14:07:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation711,049,565,427
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,045,847
net_rshares0
@nand ·
많은 관심 감사합니다 ㅎㅎ 프린트 용으로 만드는 것도 좋겠군요
properties (22)
authornand
permlinkre-oldtaste-re-nand-markdown-20170625t143715292z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 14:37:18
last_update2017-06-25 14:37:18
depth2
children0
last_payout2017-07-02 14:37:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,049,411
net_rshares0
@oounding ·
오늘 가입했는데 너무 유용한 정보예용!!감사합니당~
properties (22)
authoroounding
permlinkre-nand-markdown-20170709t053857753z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-09 05:39:00
last_update2017-07-09 05:39:00
depth1
children1
last_payout2017-07-16 05:39:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation3,765,789,745,293
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,830,848
net_rshares0
@nand ·
감사합니다!
properties (22)
authornand
permlinkre-oounding-re-nand-markdown-20170729t173057453z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-29 17:31:00
last_update2017-07-29 17:31:00
depth2
children0
last_payout2017-08-05 17:31:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id10,137,859
net_rshares0
@orcaquasar ·
잘 정리되어있네요. 다시한번 복습하고 갑니다~ upvote! ㅎㅎ
properties (22)
authororcaquasar
permlinkre-nand-markdown-20170625t115855855z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 11:58:57
last_update2017-06-25 11:58:57
depth1
children1
last_payout2017-07-02 11:58:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation352,095,463,887
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,032,606
net_rshares0
@nand ·
감사합니다~! :)
properties (22)
authornand
permlinkre-orcaquasar-re-nand-markdown-20170625t123155926z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:31:57
last_update2017-06-25 12:31:57
depth2
children0
last_payout2017-07-02 12:31:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,035,684
net_rshares0
@parkbeng ·
와 진정 꼭 필요한 정보네요! 감사합니다^^
properties (22)
authorparkbeng
permlinkre-nand-markdown-20170626t055055789z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:50:57
last_update2017-06-26 05:50:57
depth1
children1
last_payout2017-07-03 05:50:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation26,650,286,643
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,140,349
net_rshares0
@nand ·
도움이 되셨다니 고맙습니다 ^^
properties (22)
authornand
permlinkre-parkbeng-re-nand-markdown-20170626t060327626z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 06:03:27
last_update2017-06-26 06:03:27
depth2
children0
last_payout2017-07-03 06:03:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,141,204
net_rshares0
@pepcilia ·
덕분에 더 깔끔한 편집 할 수 있을 것 같습니다 !
감사합니다~ 팔로우하고가요 ^^ 맞팔부탁드립니다~
properties (22)
authorpepcilia
permlinkre-nand-markdown-20170626t054710711z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:47:12
last_update2017-06-26 05:47:12
depth1
children1
last_payout2017-07-03 05:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length56
author_reputation400,195,722,725
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,140,070
net_rshares0
@nand ·
C언어 포스팅 하시는 분이시군요 맞팔 했습니다 ^^
properties (22)
authornand
permlinkre-pepcilia-re-nand-markdown-20170626t060251267z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 06:02:51
last_update2017-06-26 06:02:51
depth2
children0
last_payout2017-07-03 06:02:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,141,160
net_rshares0
@pliton ·
$0.37
좋은 글 감사합니다.^^
👍  
properties (23)
authorpliton
permlinkre-nand-markdown-20170625t121756717z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:18:00
last_update2017-06-25 12:18:00
depth1
children2
last_payout2017-07-02 12:18:00
cashout_time1969-12-31 23:59:59
total_payout_value0.277 HBD
curator_payout_value0.092 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation9,003,173,132,522
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,034,359
net_rshares34,010,062,549
author_curate_reward""
vote details (1)
@nand ·
저도 감사합니다 :)
properties (22)
authornand
permlinkre-pliton-re-nand-markdown-20170625t123915935z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:39:18
last_update2017-06-25 12:39:18
depth2
children0
last_payout2017-07-02 12:39:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length11
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,036,436
net_rshares0
@tkki ·
감사합니다. 저는 이미지 올리는게 여즉 불편한데 다른분들은 어떤방법을 쓰시는지몰겠네요.
properties (22)
authortkki
permlinkre-pliton-re-nand-markdown-20180206t093510435z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-06 09:35:15
last_update2018-02-06 09:35:15
depth2
children0
last_payout2018-02-13 09:35:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length48
author_reputation515,829,989,749
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,361,478
net_rshares0
@posthuman · (edited)
많은 도움이 되었습니다! 즐찾해놓고 필요할 때 마다 봐야겠습니다. 팔로우,보팅, 댓글! 하고 갑니다.^^
properties (22)
authorposthuman
permlinkre-nand-markdown-20180325t105332958z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-25 10:53:36
last_update2018-03-25 10:54:03
depth1
children1
last_payout2018-04-01 10:53:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length58
author_reputation237,021,125,715
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,482,393
net_rshares0
@nand ·
감사합니다~
properties (22)
authornand
permlinkre-posthuman-re-nand-markdown-20180326t064652461z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-26 06:46:54
last_update2018-03-26 06:46:54
depth2
children0
last_payout2018-04-02 06:46:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id46,639,552
net_rshares0
@ravenclaw69 ·
으으윽... 제가 뭘 잘못 건드렸는지 낸드님께서 달아주신 댓글이 날아갔습니다. Orz 친절한 가이드 감사드립니다. 책은 뭐 아무래도 최근에 나온 책이 가장 많은 정보를 담고 있는 바...(쿨럭)... 여튼 따뜻한 호의를 보여주셨는데 아무생각 없이 날려버려서 죄송하다는 말씀 올립니다. ㅠㅠ
properties (22)
authorravenclaw69
permlinkre-nand-markdown-20180203t075634799z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-03 07:56:36
last_update2018-02-03 07:56:36
depth1
children1
last_payout2018-02-10 07:56:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length161
author_reputation3,560,103,438,146
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,587,914
net_rshares0
@nand ·
블록체인 기반이라  삭제되더라도 한번 올린 글은 내역은 볼 수 있습니다.  ㅎㅎ
더불어, 댓글은 잘 살아있네요.
책 한번 사봐야겠어요. 감사합니다 ㅎㅎ
properties (22)
authornand
permlinkre-ravenclaw69-re-nand-markdown-20180203t080412242z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-03 08:04:15
last_update2018-02-03 08:04:15
depth2
children0
last_payout2018-02-10 08:04:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length84
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id34,589,057
net_rshares0
@reconteur43 ·
가장 이해가 잘 되는 쉬운 글이었습니다! 좋은 정보 감사해요~~
properties (22)
authorreconteur43
permlinkre-nand-markdown-20170818t190423482z
categorykr
json_metadata{"tags":["kr"],"app":"steemkr/0.1"}
created2017-08-18 19:04:24
last_update2017-08-18 19:04:24
depth1
children1
last_payout2017-08-25 19:04:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length35
author_reputation261,272,114,277
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id12,201,046
net_rshares0
@nand ·
댓글 감사합니다.~
properties (22)
authornand
permlinkre-reconteur43-re-nand-markdown-20170912t161122759z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-09-12 16:11:18
last_update2017-09-12 16:11:18
depth2
children0
last_payout2017-09-19 16:11:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,674,680
net_rshares0
@replayphoto ·
지난 글이지만 잘 정리해주셔서 보고 바로 썼습니다.
인사라도 드리고 갈께요. 감사합니다! ^^
properties (22)
authorreplayphoto
permlinkre-nand-markdown-20180221t034642171z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-21 03:46:42
last_update2018-02-21 03:46:42
depth1
children1
last_payout2018-02-28 03:46:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length52
author_reputation6,815,136,883,689
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id39,238,190
net_rshares0
@nand ·
잘 써주시니 감사합니다. 
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-replayphoto-re-nand-markdown-20180315t081327833z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-15 08:13:33
last_update2018-03-15 08:13:33
depth2
children0
last_payout2018-03-22 08:13:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length108
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,546,192
net_rshares0
@rimamoon ·
좋은 정보네요 이런건 리스팀해야겠어요 ^^
properties (22)
authorrimamoon
permlinkre-nand-markdown-20170625t213707448z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 21:37:06
last_update2017-06-25 21:37:06
depth1
children1
last_payout2017-07-02 21:37:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation134,623,312,141
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,097,866
net_rshares0
@nand ·
리스팀까지 해주시니 감사합니다~ ^^
properties (22)
authornand
permlinkre-rimamoon-re-nand-markdown-20170625t221637807z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 22:17:06
last_update2017-06-25 22:17:06
depth2
children0
last_payout2017-07-02 22:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,101,995
net_rshares0
@semiye ·
정말 많은 도움이 되는 글입니다.  어쩜 이렇게 깔끔하게 정리하셨는지 참 대단합니다.  글쓰기는 기본 중의 기본인데 글쓰는데 필요한 것들을 한꺼번에 잘 정리하셨군요. 

그런데 이미지를 어떻게 올리는 지 아직도 궁금증이 남아 있습니다.  혹시 어떻게 하면 이미지 제대로 올릴 수 있는지 알려주시면 감사하겠습니다. 특히,  나중에 잠길 수가 있어서 이미지 올리는 게 여간 신경이 쓰이지 않습니다.
properties (22)
authorsemiye
permlinkre-nand-markdown-20180227t162008293z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-27 16:20:06
last_update2018-02-27 16:20:06
depth1
children1
last_payout2018-03-06 16:20:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length220
author_reputation21,460,346,790
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id40,905,467
net_rshares0
@nand · (edited)
인터넷 상의 이미지는 주소(url)가 있으면 url 그대로
 쓰면 됩니다.
pc상의 그림인 경우, 작성란에 '드래그 앤 드랍'으로 마우스로 끌어 옮겨서 몇초 기다리면 자동 업로드 됩니다.
이미지는 스팀잇이 사용하고 있는 아마존 서버에 올라갑니다.
말씀대로 글처럼 이미지도 삭제가 안되기에 신중히 하셔야겠죠.
properties (22)
authornand
permlinkre-semiye-re-nand-markdown-20180304t160148579z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-04 16:01:51
last_update2018-03-04 16:02:54
depth2
children0
last_payout2018-03-11 16:01:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length171
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id42,162,781
net_rshares0
@seul ·
완벽한 설명 감사합니다. 네이버 참고해가며 익혔는데, 알게 된 것 외에도 더 많은 정보가 담긴 글이네요. 팔로하고 좋은 글 자주 보러 오겠습니다!
properties (22)
authorseul
permlinkre-nand-markdown-20170626t061909817z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 06:19:12
last_update2017-06-26 06:19:12
depth1
children1
last_payout2017-07-03 06:19:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length81
author_reputation454,358,692,713
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,142,269
net_rshares0
@nand ·
고맙습니다~ @seul 님 댓글로 힘을 얻어서 앞으로도 좋은 정보들 올리겠습니다 !
properties (22)
authornand
permlinkre-seul-re-nand-markdown-20170626t062607519z
categorykr
json_metadata{"tags":["kr"],"users":["seul"],"app":"steemit/0.1"}
created2017-06-26 06:26:09
last_update2017-06-26 06:26:09
depth2
children0
last_payout2017-07-03 06:26:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length46
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,142,756
net_rshares0
@shsleeper ·
감사합니다. 너무 정리 잘되어 있네요!
properties (22)
authorshsleeper
permlinkre-nand-markdown-20180216t071901208z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-16 07:19:00
last_update2018-02-16 07:19:00
depth1
children1
last_payout2018-02-23 07:19:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation843,429,083,845
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id37,937,443
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-shsleeper-re-nand-markdown-20180216t190759969z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-16 19:08:00
last_update2018-02-16 19:08:00
depth2
children0
last_payout2018-02-23 19:08:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id38,073,162
net_rshares0
@siapa0516 ·
이 글을 스팀잇 시작하자마자 발견했었으면, 저의 소중한 시간을 반나절 정도는 아낄 수 있지 않았을까 싶네요..
properties (22)
authorsiapa0516
permlinkre-nand-markdown-20170912t153928901z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-09-12 15:39:33
last_update2017-09-12 15:39:33
depth1
children1
last_payout2017-09-19 15:39:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length61
author_reputation811,321,690,881
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,671,553
net_rshares0
@nand ·
$0.05
아쉽네요. 초보자를 위한 매뉴얼 정리가 나와야 한다고 생각합니다.
준비하고 있는 분도 계신 것 같고요.
👍  
properties (23)
authornand
permlinkre-siapa0516-re-nand-markdown-20170912t161156559z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-09-12 16:11:54
last_update2017-09-12 16:11:54
depth2
children0
last_payout2017-09-19 16:11:54
cashout_time1969-12-31 23:59:59
total_payout_value0.037 HBD
curator_payout_value0.012 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length57
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id14,674,738
net_rshares18,124,525,141
author_curate_reward""
vote details (1)
@snow-airline ·
&#9992; 낸드님 이런 정보는 환영입니다 ㅎㅎ
properties (22)
authorsnow-airline
permlinkre-nand-markdown-20170626t051524399z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:15:45
last_update2017-06-26 05:15:45
depth1
children1
last_payout2017-07-03 05:15:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation48,058,030,079,758
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,137,599
net_rshares0
@nand ·
고마워요 ㅎㅎ
지금 2탄을 구상하고 있습니다.
properties (22)
authornand
permlinkre-snow-airline-re-nand-markdown-20170626t052422854z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 05:24:24
last_update2017-06-26 05:24:24
depth2
children0
last_payout2017-07-03 05:24:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,138,264
net_rshares0
@steemitjp ·
알기쉽게 잘 설명해주셔서 감사합니다.
properties (22)
authorsteemitjp
permlinkre-nand-markdown-20170705t033748025z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-05 03:37:48
last_update2017-07-05 03:37:48
depth1
children1
last_payout2017-07-12 03:37:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation199,187,045,156,371
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,351,714
net_rshares0
@nand ·
잘 보셨다니 감사합니다~
properties (22)
authornand
permlinkre-steemitjp-re-nand-markdown-20170705t065803665z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-05 06:58:03
last_update2017-07-05 06:58:03
depth2
children0
last_payout2017-07-12 06:58:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,364,804
net_rshares0
@stellakimmm ·
초보자에게 많은 도움이 되었어요 감사합니다!!
properties (22)
authorstellakimmm
permlinkre-nand-markdown-20180415t150021465z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-04-15 15:00:24
last_update2018-04-15 15:00:24
depth1
children1
last_payout2018-04-22 15:00:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation7,797,699,125
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id50,212,887
net_rshares0
@nand ·
감사합니다!
properties (22)
authornand
permlinkre-stellakimmm-re-nand-markdown-20180510t041706158z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-05-10 04:17:06
last_update2018-05-10 04:17:06
depth2
children0
last_payout2018-05-17 04:17:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,879,729
net_rshares0
@susueng ·
또 하나 배워갑니다.
감사합니다
properties (22)
authorsusueng
permlinkre-nand-markdown-20170626t015332959z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 01:53:27
last_update2017-06-26 01:53:27
depth1
children1
last_payout2017-07-03 01:53:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,550,737,615,366
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,120,535
net_rshares0
@nand ·
도움이 되셨다니 감사합니다.
properties (22)
authornand
permlinkre-susueng-re-nand-markdown-20170626t045538234z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-26 04:55:39
last_update2017-06-26 04:55:39
depth2
children0
last_payout2017-07-03 04:55:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length15
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,136,102
net_rshares0
@tcban ·
설명해주신 글 잘 보고갑니다. 많은 도움이 될 것 같아요! 
좋은 하루 되세요.
properties (22)
authortcban
permlinkre-nand-markdown-20180130t020953428z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-30 02:09:54
last_update2018-01-30 02:09:54
depth1
children1
last_payout2018-02-06 02:09:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length44
author_reputation353,355,988,371
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,436,818
net_rshares0
@nand · (edited)
감사합니다. 이것도 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-tcban-re-nand-markdown-20180130t150919901z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-01-30 15:09:21
last_update2018-01-30 15:11:03
depth2
children0
last_payout2018-02-06 15:09:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length97
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,592,760
net_rshares0
@thinkfree ·
감사합니다. 완전 초보자라 도움이 많이 되었습니다!!
properties (22)
authorthinkfree
permlinkre-nand-markdown-20180531t070441172z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-05-31 07:04:30
last_update2018-05-31 07:04:30
depth1
children0
last_payout2018-06-07 07:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation18,003,024,619
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id58,557,259
net_rshares0
@tiagd ·
이런 정보를 작성한지 7일이 지나 봐서 아쉽습니다.ㅠㅠ 리스팀기능도 비활성화 되었네요. 아쉬워라ㅠㅠ 유용한 정보 잘 보고 갑니다!!
properties (22)
authortiagd
permlinkre-nand-markdown-20170704t072318350z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-04 07:23:48
last_update2017-07-04 07:23:48
depth1
children2
last_payout2017-07-11 07:23:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length73
author_reputation6,837,533,936,233
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,242,728
net_rshares0
@nand ·
잘 보셨으면 됐죠 ㅎㅎ
앞으로도 간간히 유용한 정보들 있으면 올릴게요
properties (22)
authornand
permlinkre-tiagd-re-nand-markdown-20170704t073124629z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-04 07:31:24
last_update2017-07-04 07:31:24
depth2
children1
last_payout2017-07-11 07:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length38
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,243,364
net_rshares0
@tiagd ·
네~ 기대하겠습니다^^
properties (22)
authortiagd
permlinkre-nand-re-tiagd-re-nand-markdown-20170704t073151958z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-04 07:32:21
last_update2017-07-04 07:32:21
depth3
children0
last_payout2017-07-11 07:32:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation6,837,533,936,233
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,243,452
net_rshares0
@treasuresea ·
참고할 자료네요 ~고맙습니다.
properties (22)
authortreasuresea
permlinkre-nand-markdown-20180127t040427383z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-27 04:04:30
last_update2018-01-27 04:04:30
depth1
children1
last_payout2018-02-03 04:04:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation0
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id32,639,282
net_rshares0
@nand ·
감사합니다~
properties (22)
authornand
permlinkre-treasuresea-re-nand-markdown-20180128t173123445z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-28 17:31:24
last_update2018-01-28 17:31:24
depth2
children0
last_payout2018-02-04 17:31:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id33,058,811
net_rshares0
@upstone ·
좋은 정보 감사합니다. 
빨리 익히겠습니다. ^^
properties (22)
authorupstone
permlinkre-nand-markdown-20170628t211017348z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-28 21:10:18
last_update2017-06-28 21:10:18
depth1
children1
last_payout2017-07-05 21:10:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length27
author_reputation126,207,549,410
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,532,381
net_rshares0
@nand ·
도움 되셨다니 고맙습니다 ^^
properties (22)
authornand
permlinkre-upstone-re-nand-markdown-20170628t220638078z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-28 22:06:33
last_update2017-06-28 22:06:33
depth2
children0
last_payout2017-07-05 22:06:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length16
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,538,538
net_rshares0
@visualonline ·
늦었지만 많이 배우고 갑니다 고맙습니다
properties (22)
authorvisualonline
permlinkre-nand-markdown-20180108t092037533z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-08 09:20:36
last_update2018-01-08 09:20:36
depth1
children1
last_payout2018-01-15 09:20:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length21
author_reputation557,940,205,843
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,957,829
net_rshares0
@nand ·
감사합니다~
properties (22)
authornand
permlinkre-visualonline-re-nand-markdown-20180108t121658318z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-01-08 12:17:00
last_update2018-01-08 12:17:00
depth2
children0
last_payout2018-01-15 12:17:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id27,988,954
net_rshares0
@woosungchoi ·
와 마크다운 몰랐는데 정말 좋네요.

스팀 전용 기능도 있다니 정말 유용할 것 같습니다!!!
properties (22)
authorwoosungchoi
permlinkre-nand-markdown-20170625t180043921z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 18:00:48
last_update2017-06-25 18:00:48
depth1
children1
last_payout2017-07-02 18:00:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length51
author_reputation691,164,066,889
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,073,343
net_rshares0
@nand ·
감사합니다. 유용하게 쓰세요 ~
properties (22)
authornand
permlinkre-woosungchoi-re-nand-markdown-20170625t181743716z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 18:17:45
last_update2017-06-25 18:17:45
depth2
children0
last_payout2017-07-02 18:17:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length17
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,075,361
net_rshares0
@xodyd2da ·
정고감사합니당
properties (22)
authorxodyd2da
permlinkre-nand-2017628t16123742z
categorykr
json_metadata{"tags":"kr","app":"esteem/1.4.5","format":"markdown+html","community":"esteem"}
created2017-06-28 07:01:27
last_update2017-06-28 07:01:27
depth1
children1
last_payout2017-07-05 07:01:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length7
author_reputation1,464,464,526,853
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,442,023
net_rshares0
@nand ·
고맙습니다~
properties (22)
authornand
permlinkre-xodyd2da-re-nand-2017628t16123742z-20170628t091842287z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-28 09:18:42
last_update2017-06-28 09:18:42
depth2
children0
last_payout2017-07-05 09:18:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length6
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,453,039
net_rshares0
@yahweh87 ·
글 작성하는데 정말 많은 도움이 되었습니다. 좋은 정보 정말 감사합니다!!
properties (22)
authoryahweh87
permlinkre-nand-markdown-20180206t050624238z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-02-06 05:06:27
last_update2018-02-06 05:06:27
depth1
children1
last_payout2018-02-13 05:06:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length41
author_reputation3,391,568,724,810
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,317,696
net_rshares0
@nand ·
도움이 되셨다니 감사합니다. 
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-yahweh87-re-nand-markdown-20180206t095326636z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-02-06 09:53:30
last_update2018-02-06 09:53:30
depth2
children0
last_payout2018-02-13 09:53:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length110
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id35,364,843
net_rshares0
@yhc1018 ·
감사합니다. 글쓰는게 쉽지가 않네요.
properties (22)
authoryhc1018
permlinkre-nand-markdown-20180317t084721816z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-03-17 08:47:36
last_update2018-03-17 08:47:36
depth1
children1
last_payout2018-03-24 08:47:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation1,669,286,763
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id44,914,412
net_rshares0
@nand ·
감사합니다.
이것도 한번 읽어보세요
스팀잇에 올리면 안되는 글 https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit
properties (22)
authornand
permlinkre-yhc1018-re-nand-markdown-20180319t071903686z
categorykr
json_metadata{"tags":["kr"],"links":["https://steemit.com/kr/@nand/do-not-write-these-things-on-steemit"],"app":"steemit/0.1"}
created2018-03-19 07:19:06
last_update2018-03-19 07:19:06
depth2
children0
last_payout2018-03-26 07:19:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length100
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id45,286,833
net_rshares0
@yoon ·
좋은 정보 감사합니다!
properties (22)
authoryoon
permlinkre-nand-markdown-20170625t124639663z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:46:39
last_update2017-06-25 12:46:39
depth1
children1
last_payout2017-07-02 12:46:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length12
author_reputation173,293,211,289,240
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,037,172
net_rshares0
@nand ·
감사합니다 :)
properties (22)
authornand
permlinkre-yoon-re-nand-markdown-20170625t124802788z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-06-25 12:48:06
last_update2017-06-25 12:48:06
depth2
children0
last_payout2017-07-02 12:48:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id6,037,322
net_rshares0
@youngju ·
전문적인 내용이 많네요  저의 글에 방문 감사드립니다
properties (22)
authoryoungju
permlinkre-nand-markdown-20170706t145548411z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-06 14:55:48
last_update2017-07-06 14:55:48
depth1
children1
last_payout2017-07-13 14:55:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length29
author_reputation180,909,155,121
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,530,138
net_rshares0
@nand · (edited)
감사합니다~ 제 글이 도움이 되길 바랍니다
properties (22)
authornand
permlinkre-youngju-re-nand-markdown-20170706t164303274z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2017-07-06 16:43:06
last_update2017-07-06 16:43:15
depth2
children0
last_payout2017-07-13 16:43:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length23
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id7,540,813
net_rshares0
@youngwhc ·
감사합니다~ 도움이 많이 되었어요. 근데 저 다른건 다 되는데 왜 단락 나누기는 안될까요? ㅜㅜ
properties (22)
authoryoungwhc
permlinkre-nand-markdown-20180510t014355037z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-05-10 01:43:57
last_update2018-05-10 01:43:57
depth1
children3
last_payout2018-05-17 01:43:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length53
author_reputation1,322,447,406
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,859,500
net_rshares0
@nand ·
엔터와 <br/> 을 활용해도 잘 안되시나요?
properties (22)
authornand
permlinkre-youngwhc-re-nand-markdown-20180510t040807750z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-05-10 04:08:09
last_update2018-05-10 04:08:09
depth2
children2
last_payout2018-05-17 04:08:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation2,991,057,704,509
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,878,639
net_rshares0
@youngwhc ·
죄송한데 엔터와 뭐를 활용하라고 하신건가요? 제가 이해하기론 엔터를 두 번 누르면 문단과 문단 사이에 한 줄이 비어지는것인데 전 안되서요..
properties (22)
authoryoungwhc
permlinkre-nand-re-youngwhc-re-nand-markdown-20180510t121921735z
categorykr
json_metadata{"tags":["kr"],"app":"steemit/0.1"}
created2018-05-10 12:19:39
last_update2018-05-10 12:19:39
depth3
children1
last_payout2018-05-17 12:19:39
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length78
author_reputation1,322,447,406
root_title"[Markdown] 마크다운 총정리 All in One"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id54,945,400
net_rshares0