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

相关推荐

  • 磁盘管理之swap,移动设备及dd命令的使用

    首先我们来复习一下前一天的内容 CHS Sector(扇区) 512字节 track(磁道) 63个 2^6个扇区 1024个磁道,10个位存储磁道数 track=cylinder(柱面) cylinder=(容量)sector(512)track(63)head(256)=8M head(磁头) 256 8位存储 MBR的分区方式都是基于柱面为整…

    Linux干货 2016-09-07
  • 数据结构-栈和队列

    1.栈 1.1 栈的定义 栈是一种特殊的线性表。其特殊性在于限定插入和删除数据元素的操作只能在线性表的一端进行。如下所示: 结论:后进先出(Last In First Out),简称为LIFO线性表。 栈的基本运算有六种: 构造空栈:InitStack(S)、 判栈空: StackEmpty(S)、 判栈满: StackFull(S)、 …

    Linux干货 2015-04-07
  • iptables——linux下的防火墙

    iptables Firewall:隔离工具 Packets Filter Firewall;工作于主机或网络的边缘,对经由的报文根据预先定义的规则(匹配条件)进行检测,对于能够被规则匹配到的报文实行某预定义的处理机制的一套组件          硬件防火墙:在硬件级别实现部分功…

    Linux干货 2016-10-22
  • Yellow Dog! COMMAND && source

    linux程序包管理之yum        yum:之前命名为:yellow dog ,后来因为及其好用,很多发行版都以此为默认rpm程序前端管理工具,故此更名为:yellowdog update modifier,更牛的还有一个基于redhat的二次发行版也叫yellow dog 功能:…

    Linux干货 2016-08-21
  • 定制SecureCRT配色

    定制SecureCRT配色 SecureCRT默认的配色方案不怎么喜欢,结合网上其他人的总结+自己的探索,总结怎样定制自己的配色。配出自己喜欢的界面,还是会很有成就感的。 使用SecureCRT自带主题 效果图 图中个文件的类型: compress.tar.gz 压缩文件 directory 目录 file.txt 普通文件&n…

    Linux干货 2017-09-03
  • raid5创建

    创建分区并改类型 创建raid5   创建把文件系统 生成配置文件    

    2017-12-17