美文网首页
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: "@#$%".

    相关文章

      网友评论

          本文标题:Markdown Demo

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