Markdown Markdown with study notes show

Note : with notes original slight discrepancy in Section V, Section IX added a block of code.

A title

The title represents the front using a #, # 1-6 numbers represent heading stage 1-6

Also, a title may start a new line of text under the heading = number represented by the other two title text from the next line with - represents the number

Two paragraph formatting

Paragraph return

A method to add two spaces at the end of

Method two blank lines to wrap

Fonts

Italic text Italic text

Bold text Bold text

Bold italic text bold italic text

Dividing line

Line of three or more asterisks, the minus sign, the bottom line represents the dividing line * * * * * * - - - -------- ______






Strikethrough

Markdown

Underline

Underlined text

Footnote

His words ^ [footnote content]

Note

* [Notes]: Content of the comment display quotes the bank note to be lowercase.

Three-column

Unordered list with an asterisk, plus, minus mark as a list

  • First item
  • second section
  • the third item

Ordered list using digital plus. No. labeled as a list

  1. First item
  2. second section
  3. the third item

Nested list just add four spaces in front of the child list of options

  1. life
    1. the first thing
      • eat
      • go to bed

Four blocks

Block reference in the opening paragraph use is> symbols may be a plurality of nested

  • Start

    Outermost

    Nesting a first layer
    1. Composite blocks and can use the list
    2. To put the block in the parting project, to add four spaces before the> symbol

      The second layer is nested
      • I say get it

Five Code

  1. Line substituting trans quotes
    printf()function
  2. Insert indented lines of code
    blocks of code 4 spaces or a tab (Tab key), above the line code must be free

    #include <stdio.h>
    int main(){
    return 0;
    }

Note : This method does not apply in the blog garden Markdown editor for the proper way cloud notes Markdown document.

  1. With ```(three key character) from the line (one language can be illustrated later) wrapping a piece of code, and to ```end
#include <stdio.h>
int main(){
return 0;
}

Six links

Link name
or
<link address>

Links can also be used instead of a variable, the variable address later in this document accompanying
this link with a URL variable as Google

Seven pictures

alt attribute text
or
alt attribute text

Examples

Eight tables

Use | to separate different cell, use the - to separate the header and the other lines
with the use of: and - set the content and title bar alignment

Left Align Right Align
Cell Cell Cell

Nine advanced techniques

Tags are not within the scope of Markdown, can be written in HTML directly in the document inside.

Escaped with a backslash \ escape special characters

\   反斜线
`   反引号
*   星号
_   下划线
{}  花括号
[]  方括号
()  小括号
#   井字号
+   加号
-   减号
.   英文句点
!   感叹号

Mathematical formula slightly

X study notes

2019/11/29 night two hours to learn.

Advanced Techniques one were simply to understand.

Classification of content from runoob.com tutorial .

runoob.com tutorial regarding footnote content outdated or incorrect.

Guess you like

Origin www.cnblogs.com/milerj/p/Markdown3.html