一个在线编辑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

相关推荐

  • 话说CentOS6的启动流程

    1.按下开机按钮,电脑的主板通电,电脑开始加电自检(POST,Power On and Self Test),测试主机的硬件是否满足开机的要求. 2.加载主板上的BIOS(Base Input/Output System,基本输入输出系统),BIOS会加载用户设定的第一个可开机设备.,这里我们只说硬盘的加载. 可以按下键盘上的Esc或者是F2或者是Del键,…

    Linux干货 2017-05-14
  • linux 下的文件压缩与解压

    文件压缩 压缩原理:把文件的二进制代码压缩,把相邻的0,1代码减少,比如有000000,可以把它变成6个0 的写法60,来减少该文件的空间。 目的:时间换空间,cpu时间–>空间 压缩文件工具:    compress|uncompress 压缩后的文件.z    gzip|gunzip  …

    Linux干货 2016-08-21
  • 主流Linux发行版对比

      对服务器来说,没有最好的Linux发行版。一切都取决于企业的实际需求。 如今Linux已不再只是一款自由操作系统,它还承载了许多企业的核心应用。在对比流行的Linux发行版时,不仅要考虑有吸引力的功能集,还要关注系统的支持与服务。 服务器管理员担心操作系统的维护和支持周期。维护生命周期指的是Linux发行版持续提供产品补丁和更新的时间。支持方面…

    Linux干货 2016-10-31
  • M20-1扩展正则表达式作业

    1、取本机ip地址 [root@centos6 ~]# ifconfig eth1      Link encap:Ethernet  HWaddr 00:0C:29:35:DD:AB     &nb…

    Linux干货 2016-08-10
  • 文本处理工具及正则表达式

    一、*各种文本处理工具 1.1抽取文本的工具 1.1.1 cat、less查看文本内容    more、less和cat 【选项】 【文件】 cat  –n ,-d列行 ,-A:显示所有看不见的符号(控制符),     -E:显示结尾$ ;…

    Linux干货 2016-11-23
  • java基础篇—内存分析

    Java的并发采用的是共享内存模型(而非消息传递模型),线程之间共享程序的公共状态,线程之间通过写-读内存中的公共状态来隐式进行通信。多个线程之间是不能直接传递数据交互的,它们之间的交互只能通过共享变量来实现 同步是显式进行的。程序员必须显式指定某个方法或某段代码需要在线程之间互斥执行。 1、多线程通信 1.1 内存模型 Java线程之间的通信由Java内存…

    Linux干货 2015-03-16