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

相关推荐

  • lvm基本应用

    前言 一种技术要知其然,还要知其所以然 lvm简介 LVM是 Logical Volume Manager(逻辑卷管理)的简写,它是Linux环境下对磁盘分区进行管理的一种机制。普通的磁盘分区管理方式在逻辑分区划分好之后就无法改变其大小,当一个逻辑分区存放不下某个文件时,这个文件因为受上层文件系统的限制,也不能跨越多个分区来存放,所以也不能同时放到别的磁盘上…

    Linux干货 2016-05-21
  • 浅谈netbios及其相关内容

    原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://jeffyyko.blog.51cto.com/28563/141086        Netbios想必大家都有接触。对于netbios的理解,我以前…

    Linux干货 2015-03-26
  • 开机启动流程

    grub and boot Centos5,6的开机启动流程 grub Centos7的开机启动流程 Centos5,6的开机启动流程 initrd / initramfs 一般存储在/boot目录下,以.img为结尾的文件,是一个小型的根目录系统的映像文件,里面存放了各类系统必须的模组,为了解决内核在加载完成之后没有模组无法访问磁盘加载rootfs的问题。…

    Linux干货 2016-04-11
  • bash工作特性之命令执行状态返回值与命令行展开概述

    bash工作特性之命令执行状态返回值与命令行展开概述 bash是什么? shell是一种用户接口程序,提供了用户与内核进行交互的接口。shell可以分为两类:一类为GUI,即用户图形界面;另一类为CLI,即命令行接口,将用户的命令送入到内核去执行,大多数发行版中最常用的就是bash。 bash特性 命令执行状态返回值 bash通过状态返回值来输出结果: 命令…

    Linux干货 2017-07-09
  • Linux screen命令

    screen命令 一、简介 Screen是一款终端模拟的屏幕管理器,用于命令行终端自由切换。 当我们需要执行一个用时较多的作业,不希望自己或者他人误操作关闭终端导致作业中断,可以进入screen,这样,当终端关闭,作业仍会继续执行。 GNU’s Screen 官方站点:http://www.gnu.org/software/screen/ &nb…

    2017-07-13
  • CentOS计划任务详解

    一、计划任务应用场景:        需要每天对服务器上的数据进行备份,但是白天服务器的访问量较大,服务器承受着较大的压力,备份任务只能在夜晚服务器较空闲时才能进行。或者需要临时在某时间点执行一个任务等,都需要用到计划任务的功能。 二、计划任务分类:    &…

    Linux干货 2016-09-09