美文网首页
Markdown 学习笔记

Markdown 学习笔记

作者: ariali9 | 来源:发表于2018-10-15 13:19 被阅读0次

Header

H1: # Header1
H2: ## Header2
H3: ### Header3
H4: #### Header4
H5: ##### Header5
H6: ###### Header6

test

Header1

Header2

Header3

Header4

Header5
Header6

List

  • use - example or * example or +example
  • use 1. example, 2. example
test

  • example
  • example
  1. example
  2. example

Word

  • italics : surround words with an underscore _ or *
  • bold : surround words with two asterisks **
  • bold and italics : surround words with **_
  • highlight: surround words with `
  • Strikethrough: surround words with ~~
test

italics OR italics
bold
bold and italics
highlight
Strikethrough


Link

test

baidu


Image

test

Google

Blockquotes

  • suing >
    >this is a Blockquotes
test

this is a Blockquotes


Code

  • using three ~
    ~~~ example
    print ('hello world')
    ~~~
test

print ('hello world')

Task Lists

  • using - [x] or - [ ]

Table

*To add a table, use three or more hyphens (—) to create each column’s header, and use pipes (|) to separate each column. You can optionally add pipes on either end of the table.
| example | example |
| ---- | ---- |
| A | B |

test

example example
A B

Others

  • separator:using three *
    *** =====>

  • escape characters: using \
    \#Header1 ====>
    #Header1

相关文章

  • MARKDOWN学习笔记

    标题 # MARKDOWN学习笔记 MARKDOWN学习笔记 MARKDOWN学习笔记- MARKDOWN学习笔记...

  • 文章目录

    Markdown学习 Markdown学习 Java学习 Servlet学习笔记 Java问题 Tomcat问题修...

  • markdown笔记

    markdown学习笔记 https://ouweiya.gitbooks.io/markdown 标题 强调 这...

  • 课堂学习部分摘要

    10月4日 学习markdown 语法 有道云笔记markdown指南 学习markdown语法,是文体内容简洁规...

  • Markdown 语法学习笔记

    Markdown 语法学习笔记 学习 Markdown 语法说明做的笔记 写了一些例子,按这些例子自己动手输入一遍...

  • 第一周总结

    本周完成的主要学习内容有: 学习使用Markdown写一篇简书 学习使用Markdown[笔记] https:...

  • Markdown 基本语法

    Markdown语法 当前文档仅用作个人学习笔记,来源: Markdown 中文文档 概述设计理念Markdown...

  • 【JS】自制简单的Markdown编辑器

    瞎扯 现在 markdown 来编写 笔记,是非常流行的一种语言. 学习 markdown 的难度很低, 只要学习...

  • markdown 学习笔记

    MarkDown笔记   为了在github上记录自己的学习过程中,今天特地学习了markdown。markdow...

  • 生信学习小组 D1

    Day 1 学习笔记 markdown 学习笔记 学习常见语法,加粗 斜体 斜体+加粗 插入图片 代码块 插入图...

网友评论

      本文标题:Markdown 学习笔记

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