仓库源文站点原文


layout: post title: markdown测试 categories:


markdown测试页(一级标题)

2015-01-12 10:44:39(二级标题)

以下为每种语法的简介(三级标题)

段落

不同段落之间以空行分割, 就像英文的文章.

同一段落内可以使用回车进行强制 换行

水平线






引用

使用>进行引用, 引用可以嵌套, 里面也可以使用其他格式. 如下面的例子

引用

引用

嵌套引用

恢复

引用中的H3标题

  1. 引用中的有序 列表项
  2. 引用中的有序 列表项
  3. 引用中的有序 列表项
  4. 引用中的有序 列表项

引用中的代码 return shell_exec("echo $input | $markdown_script");

脚注

这里有一个脚注.1

超链接

图片

图片

视频

Idina Menze和Caleb Hyles激情对唱Let It Go:

<iframe height=400 width=500 src="http://player.youku.com/embed/XNjcyMDU4Njg0" frameborder=0 allowfullscreen></iframe>

MathJax数学公式

行内公式 $e^{i \pi }+1 = 0$

行间对齐公式

$$\begin{align} x &= \cos t \ y &= \sin t \end{align}$$

代码

HTML代码如下

    团簇类型:
    <input type="radio" name="clsType" id="oct" checked="checked" >八面体

    <input type="radio" name="clsType" id="trc" >截角八面体 <br>
    晶胞类型:

    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">

    <link rel="stylesheet" href="file://C:/Users/Jicun/F_Prg/Markdown/MD.css">
    <link  rel="stylesheet" href="file://C:/Users/Jicun/F_Prg/Markdown/prism.css">
    <script src="file://C:/Users/Jicun/F_Prg/Markdown/prism.js"></script>
    <style type="text/css">body{font-family:"Times New Roman",georgia;font-size:20px;font-weight:normal;color:#276904;background-color:#FAFFD0}</style>
    <script type="text/x-mathjax-config"> MathJax.Hub.Config({ tex2jax:{inlineMath:[['$','$'],['\\(','\\)']], skipTags:['script','noscript','style','textarea','pre']}});</script>
    <script type="text/javascript" src="file://C:/Users/Jicun/F_Prg/MathJax/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
    <h1 id="转战markdown">转战Markdown</h1>
    <h2 id="2014-02-0211:08:34">2014-02-02 11:08:34</h2>

bash代码如下

    function CntAtm {
        usage="\
        \>>>>>>>>>>>>>>>>     CntAtm(COM)     <<<<<<<<<<<<<<<<
        \>>   Usage: CntAtm <File.gro> {Icnt1} {Icnt2} {R12Max} {XYZ}
        \>> Default: CntAtm <File.gro>   1       1        5      XY
        \>> Icnt1|2: #Iatm to define the center
        \>>  R12Max: Only print configuration with #Icnt1-#Icnt2 distance < R12Max
        \>>     XYZ: Apply PBC to X|Y|Z"

        [[ $# -lt 1 ]] && { echo "$usage"; exit; }

        File=${1%\.gro}; shift
        Icnt1=1; Icnt2=1; R12Max=5; YesXYZ="XY"; YesCOM=1

        [[ x$1 != x ]] && {  Icnt1=$1; }
        [[ x$2 != x ]] && {  Icnt2=$2; }
        [[ x$3 != x ]] && { R12Max=$3; }
        [[ x$4 != x ]] && { YesXYZ=$4; }
    }

python代码

```python
    bgn = [i for i, item in enumerate(text) if item.strip().startswith('```')]
    end = bgn[1::2]
    bgn = bgn[0::2]
    print bgn, end
```

缩进代码块

code
code
code

表格

简单表格

Tables Are Cool
col 3 is right-aligned $1600
col 2 is centered $12
zebra stripes are neat $1

复杂的

||| 表1.1 测试表格 +------------------------------------+ = 表头 = 表头 = 表头 | |左对齐 | 居中 | 右对齐|| | ::: | 项目 | 项目 | 项目 | +------------------------------------+ |||

利用gnuplot作图

  1. 函数作图

         set xl"x"; set yl"y"
         plot sin(x)
    
  2. 直接数据作图
         $Mydata << EOD
               1 2 3
               2 5 6
               3 8 9
         EOD
         plot $Mydata u 1:2 w p ps 4, $Mydata u 1:3 w lp ps 4 lw 4
    
  3. 文件数据作图
         set xl"r(\305)"; set yl"g(r)"
         plot 'Test.dat' u 1:2 w l lw 4
    

基于ditaa的ASCII图

    +--------+   +-------+    +-------+
    |        +---+ ditaa +--->|  中文 |
    |  Text  |   +-------+    |diagram|
    |Document|   |!magic!|    |       |
    |     {d}|   |       |    | cRED  |
    +---+----+   +-------+    +-------+
        :                         ^
        |       Lots of work      |
        +-------------------------+

基于aafigure的svg图

    DDDDD+----+
    DDDDD|中文|
    DDDDD|AB  |O--->O----
         +----+

基于flowchart.js的流程图

    st=>start: 开始:>http://www.google.com[blank]
    e=>end:    结束:>http://www.google.com
    op1=>operation: 操作
    sub1=>subroutine: 子程序
    cond=>condition: Yes
    or No?:>http://www.google.com
    io=>inputoutput: 输入输出

    st->op1->cond
    cond(yes)->io->e
    cond(no)->sub1(right)->op1

基于viz.js的dot图

    digraph SomeGraph {
        rankdir=LR;
        甲->{ 乙 丙 };
        乙->丙->丁;
    }

基于ChemDoodle的分子构型


  1. 这是一个脚注.