标签 :Markdown学习
正文
Coding.net 为软件开发者提供基于云计算技术的软件开发平台,包括项目管理,代码托管,运行空间和质量控制等等。
这是第一级引用
这是第二级引用
现在回到第一级引用
##这是一个标题 1.这是第一行列表项
2.这是第二行列表项
给出一些例子代码: return shell_exec(
echo $input | $markdown_script
);
代码托管平台
在线运行环境
代码质量监控
项目管理平台
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
Coding, 让开发更简单
Coding, 让开发更简单
Coding, 让开发更简单
Coding, 让开发更简单
First Header | Second Header | Third Header |
---|---|---|
content cell | content cell | content cell |
content cell | content cell | content cell |
First Header | Second Header | Third Header |
---|---|---|
content cell | content cell | content cell |
content cell | content cell | content cell |
这是分割线上部分内容
这是分割线下部分内容
#内联图片 
#引用图片
graph TD;
A-->B;
A-->C;
B-->D;
C-->E;
E-->F;
D-->F;
F-->G;
sequenceDiagram
participant Alice
participant Bob
Alice->John: Hello John, how are you?
loop Healthcheck
John->John: Fight against hypochondria
end
Note right of John: Rational thoughts
prevail...
John-->Alice: Great!
John->Bob: How about you?
Bob-->John: Jolly good!
gantt
dateFormat YYYY-MM-DD
title Adding GANTT diagram functionality to mermaid
section A section
Completed task :done, des1, 2014-01-06,2014-01-08
Active task :active, des2, 2014-01-09, 3d
Future task : des3, after des2, 5d
Future task2 : des4, after des3, 5d
section Critical tasks
Completed task in the critical line :crit, done, 2014-01-06,24h
Implement parser and jison :crit, done, after des1, 2d
Create tests for parser :crit, active, 3d
Future task in critical line :crit, 5d
Create tests for renderer :2d
Add to mermaid :1d
s=start:开始
e=end:结束
o=operation:操作项
s-o-e
graph LR
A[Square Rect] -- Link text --> B((Circle))
A --> C(Round Rect)
B --> D{Rhombus}
C --> D
st=>start: Start
e=>end
op=>operation: My Operation
cond=>condition: Yes or No?
st->op->cond
cond(yes)->e
cond(no)->op
评论