美文网首页
Markdown Demo

Markdown Demo

作者: codejourney | 来源:发表于2017-07-03 09:58 被阅读0次

标题1

  • <big>专注你的文字内容而不是排版样式。</big>
  • <small>这是缩小一个字号</small>


    这里写图片描述这里写图片描述

列表

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

|12|345|6789|012
|-||
|表格前一定空一行|关键在第二行,只要第二行第一列有一个-号就行|第一列的'竖线'可以有,也可以没有,每一行统一就行|这个表格的首列竖线是有的。最后一列的竖线也是可以有可以无

First Header Second Header
Content Cell Content Cell
Content Cell Content Cell

公式
$...$
$ f(x) = \sum_{i=0}{N}\int_{a}{b} g(t,i) \text{ d}t $.
$f(x)$


    #!python
    # -*- coding: utf-8 -*-
    from flask import Flask, render_template

    app = Flask(__name__)
    app.debug = APP_DEBUG

    #homepage just for fun
    @app.route('/')
    def home():
        return render_template('index.html')
function add_overlay()
{
    map.addOverlay(marker); //增加点
    map.addOverlay(polyline); //增加折线
    map.addOverlay(circle); //增加圆
    map.addOverlay(polygon); //增加多边形
    map.addOverlay(rectangle); //增加矩形
    map.addOverlay(balloon);
}

超链接

-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.

角注

Footnotes[1] have a label[2] and the footnote's content.

-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.

-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.
-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.
-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.

标题3

-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.

标题4

-JSDoc 3 is an API documentation generator for JavaScript, similar to Javadoc or phpDocumentor. You add documentation comments directly to your source code, right alongside the code itself. The JSDoc tool will scan your source code and generate an HTML documentation website for you.


  1. This is a footnote content.

  2. A footnote on the label: "@#$%".

相关文章

  • 2018-02-24

    markdown simple demo: 1. Title Demo This is level 1 title...

  • Markdown Demo

    寫在前面的話:這算是我第一次使用markdown來寫文章, 說來慚愧,從兩三年前就已 經有學習markdow...

  • Markdown demo

    点击预览左侧为编辑区 可以专注文字不用排版 一级标题 二级标题 这个写点啥呢 又一个二级标题 这个呢反正一共可以添...

  • Markdown Demo

    这是一级标题 1.aaaaaa ccccc ooooo ddddd 2.bbbbbb eeeee ffffffff...

  • markdown demo

    贴图:

  • Markdown Demo

    一级标题 二级标题 三级标题 四级标题 五级标题 六级标题 无序列表 1 2 3 4 有序列表 1 2 3 4 L...

  • MarkDown Demo

    我们 This is a block quote This is the second paragraph in...

  • markdown demo

    表格 引用(">") MarkDown demo by Leon在这里讨论技术,关于实际,关于理想。事大厦的是多少...

  • Markdown Demo

    标题1 专注你的文字内容而不是排版样式。 这是缩小一个字号 这里写图片描述 列表 Tables|Are|Cool-...

  • markdown demo

    # This is a title. ## second title ### thrid title #### f...

网友评论

      本文标题:Markdown Demo

      本文链接:https://www.haomeiwen.com/subject/xmdacxtx.html