一个在线编辑markdown文档的编辑器

test

#Standard Markdown

##Strong and Emphasize
“`
*emphasize* **strong**
_emphasize_ __strong__
“`
##Links and Email
Inline:
“`
An [example](http://url.com/ “Title”)
“`
Reference-style labels (titles are optional):
“`

An [example][id]. Then, anywhere
else in the doc, define the link:

[id]: http://example.com/ “Title”
“`
Email:
“`
An email <example@example.com> link.
“`

##Images
Inline (titles are optional):
“`
![alt text](/path/img.jpg “Title”)
“`
Reference-style:
“`
![alt text][id]

[id]: /url/to/img.jpg “Title”
“`
##Headers
“`
Setext-style:

Header 1
========

Header 2
——–
“`
atx-style (closing #’s are optional):
“`
# Header 1 #

## Header 2 ##

###### Header 6
“`
##Lists
Ordered, without paragraphs:
“`
1. Foo
2. Bar
“`
Unordered, with paragraphs:
“`
* A list item.

With multiple paragraphs.

* Bar
“`
You can nest them:
“`
* Abacus
* answer
* Bubbles
1. bunk
2. bupkis
* BELITTLER
3. burper
* Cunning
“`
##Blockquotes
“`
> Email-style angle brackets
> are used for blockquotes.

> > And, they can be nested.

> #### Headers in blockquotes
>
> * You can quote a list.
> * Etc.
“`
##Inline Code
“`
`<code>` spans are delimited
by backticks.

You can include literal backticks
like “ `this` “.
“`
##Block Code
Indent every line of a code block by at least 4 spaces or 1 tab.
“`
This is a normal paragraph.

This is a preformatted
code block.
“`
##Horizontal Rules
Three or more dashes or asterisks:
“`

* * *

– – – –
“`
##Hard Line Breaks
End a line with two or more spaces:
“`
Roses are red,
Violets are blue.“`

本文来自投稿,不代表Linux运维部落立场,如若转载,请注明出处:http://www.178linux.com/89211

(1)
lele
上一篇 2017-12-02 21:42
下一篇 2017-12-03 11:12

相关推荐

  • Linux的哲学思想第二篇

    Linux的哲学思想 一切皆文件 物理终端 物理终端指的是显示器等硬件终端设备,文件存在于 /dev/console 这个路径下 虚拟终端 虚拟终端指的是在linux命令行连接的终端,文件存在于 /dev/tty# [1,6] 这个路径下 串行终端 指的是使用计算机串行端口连接的终端设备,文件存在于 /dev/ttyS# 这个路径下 伪终端 指的是在Xshe…

    2018-02-26
  • scp命令介绍

    scp是secure copy的简写,用于在Linux下进行远程拷贝文件的命令,和它类似的命令有cp,不过cp只是在本机进行拷贝不能跨服务器,而且scp传输是加密的。可能会稍微影响一下速度。当你服务器硬盘变为只读 read only system时,用scp可以帮你把文件移出来。另外,scp还非常不占资源,不会提高多少…

    Linux干货 2017-07-24
  • 无网不利

                    网络是主机之间交互的必备条件。联网就是将主机互联来形成网络,使得网络中的主机得以交换信息。       &n…

    2017-08-19
  • python第二周

    #python数据结构(list) ## 分类 数值型:int、float、complex、bool 序列对象:字符串 str   列表  list   元组  tuple 键值对: 集合 set   字典 dict   ## 数字的处理函数 math.e  math.pi: 自如常数和π round():  四舍六入五去偶 floor():  取…

    Linux干货 2017-09-23
  • N25-第四周作业

    第四周作业 1、复制/etc/skel目录为/home/tuser1,要求/home/tuser1及其内部文件的属组和其它用户均没有任何访问权限。 ~]#cp -r /etc/skel /home/tuser1 ~]#chmor 700 /home/tuser1 2、编辑/etc/group文件,添加组hadoop。 ~]#echo "h…

    Linux干货 2017-01-03
  • N25-第二周作业

    ①Linux文件管理命令常用方法 Linux常见文件类型 -:files,常规文件 d: directory,目录文件 b: block device,块设备文件 c:character device,字符设备文件 l:symbolic link,符号链接文件 p: pipe,命名管道 s: socket,套接字文件 命令管理工具指南:cp、rm、mv 1.…

    Linux干货 2016-12-13