美文网首页
Markdown学习

Markdown学习

作者: shinier | 来源:发表于2016-08-02 20:52 被阅读7次

A first Level Header

A second Level Header


H1

H2

H3

H4

H5
H6

Now is time for all good man to come to aid of the country .this is just a regular paragraph.

The quick brown fox jump over the lazy dog's back.

Header 3

this is a blockquote.
blockquote?

this is the second paragraph in the blockquote.

this is an H2 in a blockquote ,here,markdown allows you to be lazy and only put the>before the first line

  1. This is the first list item.
    2.This the second list item.

blockquote 1:
if you want to have a nested by adding additional level of >

this is the nested blockquote
wonderful!


Some of these words *are emphasized *.
Some of these words_are emphasized too_.

Use two asterisks for strong emphasized.
Or,if you prefer,use two underscores instead.

  • candy
  • gum
  • booze

  • candy
  • gum
  • booze

  • candy
  • gum
  • booze

If you want to use some regular number,followed by periods:

  1. Red
  2. green
  3. blue

If you put blank lines between items,you will get <p>tags for the list item text. You can create multi-paragraph list items by indenting the paragraph by 4 spaces or 1 tab:

  • a list item.
    With multiple paragraphs.
  • another item in the list

Inline-style links use parentheses immediately after the link text.For example:
This is an example link

Optionally,you may include a little attribute in the parentheses:

This is an [戳我,这只是多了个title属性而已](http://www.baidu.com/"With a title”).


if you want to have several links with their names:

I get 10 times more traffic from [google][1] than from [Yahoo][2] or [MSN][3].
[1]: http://google.com/ "Google"
[2]:http://search.com/ "Yahoo"
[3]:http://search msn.com/ "msn"


If you wanna add some images in ur passage:

alt textalt text

or like the following one:
![alt text][id]
[id]:/path/to/img.jpg "Title "


If you want ur page to validate XHTML 1.0Strict,you've got to paragraph rages in your blockquotes:
<blockquote >
<p>For example</p>
</blockquote >


  • A list item with a code block:
    <what's up!what's up?!! >

We should know that code by markdown in JianShu is not allowed.

This is a normal paragraph:
This is a code block!????

Here is an example of AppleScript:
Tell application "Foo"
Beep
End

Use the 'printf()' function.

"There is a literal backtick (')here

A single backtick in a code span:"'"
A backtick-delimited string in a code span :"'foo'".


I strongly recommend against using any '' tags.

I wish SmartPants used named entitles like "—"instead of decimal-ancoded entitles like '—'


Backslash Escapes:(It is possible to trigger an ordered list by accident,so you need to avoid it by using a backslash-escape the period):
*literal asterisks * to avoid literal asterisks

  1. What a great season!

1986\. What a great season

相关文章

  • MARKDOWN学习笔记

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

  • github_markdown语法大全整理

    markdown github markdown语法 markdown引擎 学习markdown 文档说明 本文用...

  • MarkDown学习

    **学习网站: ** Markdown学习 中文简单MD语法 Markdown 语法说明 Markdown写作浅谈...

  • MarkDown学习例程

    #MarkDown学习例程 今天学习了MarkDown语法,觉得MarkDown显示效果非常简洁。之所以学习Mar...

  • 文章目录

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

  • 全栈工程师之路8-4

    #markdown的学习 ## markdown的下载MarkdownPad - The Markdown Edi...

  • Markdown 总结

    Markdown 学习 一 Markdown介绍 1.1 什么是Markdown? Markdown 是一个 We...

  • 1.为什么要学markdown

    学习markdown语法 为什么要学习markdown语法呢? markdown与富文本的区别: 参考链接:官方的...

  • 应有的学习历程

    jupyter lab latex markdown markdown学习 python C#学习(菜鸟教程) 游...

  • 课堂学习部分摘要

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

网友评论

      本文标题:Markdown学习

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