转载

Markdown学习-CloudStudio


Markdown学习-CloudStudio

标签 :Markdown学习


标题

一级标题

二级标题

三级标题

四级标题

五级标题
六级标题

正文

锚点

访问链接

引用

Coding.net 为软件开发者提供基于云计算技术的软件开发平台,包括项目管理,代码托管,运行空间和质量控制等等。

区块引用的嵌套

这是第一级引用

这是第二级引用

现在回到第一级引用

引用区块内使用Markdown语法

##这是一个标题 1.这是第一行列表项

2.这是第二行列表项

给出一些例子代码: return shell_exec(echo $input | $markdown_script);

无序列表

  • Red
  • Green
  • Blue

有序列表

  1. Red
  2. Green
  3. Blue

列表内引用

  • Coding.net 有以下主要功能

    代码托管平台

    在线运行环境

    代码质量监控

    项目管理平台

代办列表

  • [ ] 不勾选
  • [x] 勾选

代码

require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html

斜体

Coding, 让开发更简单

Coding, 让开发更简单

粗体

Coding, 让开发更简单

Coding, 让开发更简单

自动链接

超强大的开发平台Coding

表格

First HeaderSecond HeaderThird Header
content cellcontent cellcontent cell
content cellcontent cellcontent cell
First HeaderSecond HeaderThird Header
content cellcontent cellcontent cell
content cellcontent cellcontent cell

分割线

这是分割线上部分内容


这是分割线下部分内容

#内联图片 ![这是内联一张图片](C:\Users\daozhi\Pictures\Camera Roll\桌面1.jpg "一张内联图片")

#引用图片 这是一张引用图片

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
其他

评论