Markdown 语法手册
Tabs
- Apple
- Orange
- Banana
This is an apple 🍎
This is an orange 🍊
This is a banana 🍌
- JavaScript
- Python
- Java
function helloWorld() {
console.log('Hello, world!');
}
def hello_world():
print 'Hello, world!'
class HelloWorld {
public static void main(String args[]) {
System.out.println("Hello, World");
}
}
General Markdown Features
Content
Blockquote
Syntax Highlighting
/src/components/HelloCodeTitle.js
function HelloCodeTitle(props) {
return <h1>Hello, {props.name}</h1>;
}
console.log('Every repo must come with a mascot.');
function HighlightSomeText(highlight) {
if (highlight) {
return 'This text is highlighted!';
}
return 'Nothing highlighted';
}
import React from 'react';
function MyComponent(props) {
if (props.isBar) {
return <div>Bar</div>;
}
return <div>Foo</div>;
}
export default MyComponent;
Admonitions
备注
The content and title can include markdown.
You can
specify an optional
titleHeads up! Here's a pro-tip.
信息
Useful information
.
警告
Warning! You better pay attention!
危险
Danger danger, mayday!
Badges
Default Badge
<span className="badge">Default Badge</span>
badge--primary
<span className="badge badge--primary">badge--primary</span>
badge--secondary
<span className="badge badge--secondary">badge--secondary</span>
badge--success
<span className="badge badge--success">badge--success</span>
badge--info
<span className="badge badge--info">badge--info</span>
badge--warning
<span className="badge badge--warning">badge--warning</span>
badge--danger
<span className="badge badge--danger">badge--danger</span>