devto 형식 변형을 보여주는 문서입니다.
목차
Components
Lists
마크다운이란? (제목 1("#"))
Markdown은 일반 텍스트 문서를 만드는 간단한 기술입니다. 이것은 HTML을 대체하지만 일반 텍스트 형식뿐만 아니라 HTML 및 XML을 포함한 많은 마크업 언어를 지원하는 확장성이 더 뛰어난 것입니다.
Markdown이 영화 시놉시스인 경우(제목("##"))
한 청년이 자신의 할머니가 마녀라는 사실을 알게 됩니다. 그녀는 그에게 그것을 부수고 제거할 방법을 찾아야 한다는 저주를 걸었습니다.
H3(제목("###"))
그것의 단지 h3
H4(제목("####"))
그것의 단지 h4
But seriously, lets arrange our knowledge (quote)
마크다운 사용법
But seriously, lets arrange our knowledge (quote)
간단합니다
구성품
H1
H2
H3
H4
H5
H6
이 무작위 이미지의 캡션
숨겨진 메모)
기울기
주문한 할 일 목록
- Make a to do list
- Check off first thing on the "To do" list
- Realize you've already accomplished 2 things on the list
- Reward yourself with a nap
콘텐츠가 있는 정렬된 목록
- Title of the first thing
Random image again
- Second thing
정렬되지 않은 목록
- Task number… One?
- Two I guess.
연결
I’m an inline-style link
I'm a reference-style link
You can use numbers for reference-style link definitions
또는 비워두고 다음을 사용하십시오.
URL 및 꺾쇠 괄호 안의 URL은 자동으로 링크로 바뀝니다.
http://www.example.com 또는 http://www.example.com 그리고 어떨 때에는
example.com(하지만 예를 들어 Github에는 없음).
참조 링크가 나중에 따를 수 있음을 보여주는 일부 텍스트입니다.
코드 및 구문 강조
Inline code
has back-ticks around
it.
Blocks of code are either fenced by lines with three back-ticks
``` and with language, or are indented with four spaces. I recommend only using the fenced code blocks — they’re easier and only they support syntax highlighting.
javascript
var s = "JavaScript syntax highlighting";
alert(s);
python
s = "Python syntax highlighting"
print s
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
final theme = Theme.of(context);
테이블?
Colons can be used to align columns.
Tables
Are
Cool
col 3 is
right-aligned
$1600
col 2 is
centered
$12
zebra stripes
are neat
$1
The outer pipes (|) are optional, and you don't need to make the raw Markdown line up prettily. You can also use inline Markdown.
Markdown
Less
Pretty
Still
renders
nicely
1
2
3
인라인 HTML
- Definition list
- Is something people use sometimes.
- Markdown in HTML
- Does *not* work **very** well. Use HTML tags.
수평선
세 개 이상...
하이픈
별표
특별한 감사
code
has back-ticks around
it.``` and with language, or are indented with four spaces. I recommend only using the fenced code blocks — they’re easier and only they support syntax highlighting.
javascript
var s = "JavaScript syntax highlighting";
alert(s);
python
s = "Python syntax highlighting"
print s
No language indicated, so no syntax highlighting.
But let's throw in a <b>tag</b>.
final theme = Theme.of(context);
Tables | Are | Cool |
---|---|---|
col 3 is | right-aligned | $1600 |
col 2 is | centered | $12 |
zebra stripes | are neat | $1 |
Markdown | Less | Pretty |
---|---|---|
Still | renders |
nicely |
1 | 2 | 3 |
추신 devto 모바일 앱용입니다.
Reference
이 문제에 관하여(devto 형식 변형을 보여주는 문서입니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/ytskk/article-that-shows-devto-formatting-variants-47n9텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)