测试Markdown

测试markdown是否可用

<!– @import “[TOC]” {cmd=”toc” depthFrom=1 depthTo=6 orderedList=false} –>
<!– code_chunk_output –>
* [标题1](#标题1)
    * [标题2](#标题2)
        * [标题3](#标题3)
<!– /code_chunk_output –>
# 标题1
## 标题2
### 标题3
> hahha
> xixi
“` {.line-numbers}
12341234
12341234
“`
1. Item 1
1. Item 2
1. Item 3
1. Item 3a
1. Item 3b
* Item 1
* Item 2
* Item 2a
* Item 2b
> 我觉得你应该在这里使用
> `<addr>` 才对。
“`ruby
require ‘redcarpet’
markdown = Redcarpet.new(“Hello World!”)
puts markdown.to_html
“`
“`javascript {.line-numbers}
function add(x, y) {
return x + y
<!– @import “[TOC]” {cmd=”toc” depthFrom=1 depthTo=6 orderedList=false} –>
}
“`
“`shell {.line-numbers}
#!/bin/bash
hostname
source /etc/profile.d/env.sh
“`
– [x] @mentions, #refs, [links](), **formatting**, and <del>tags</del> supported
– [x] list syntax required (any unordered or ordered list supported)
– [x] this is a complete item
– [ ] this is an incomplete item
First Header | Second Header
———— | ————-
Content from cell 1 | Content from cell 2
Content in the first column | Content in the second column
添加 {++ ++}
删除 {– –}
替换 {~~ ~> ~~}
注释 {>> <<}
高亮 {== ==}{>> <<}

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

(0)
无言胜千言无言胜千言
上一篇 2018-03-08
下一篇 2018-03-11

相关推荐

  • 8月5日第七节课作业

    一、当天练习 1、找出ifconfig命令结果中本机的所有IPv4地址 2、查出分区空间使用率的最大百分比值 3、查出用户UID最大值的用户名、UID及shell类型 4、查出/tmp的权限,以数字方式显示 5、统计当前连接本机的每个远程主机IP的连接数,并按从大 到小排序 1、显示/proc/meminfo文件中以大小s开头的行;(要求:使 用两种方式) …

    Linux干货 2016-08-08
  • Linux之SELinux

      Linux之SELinux     本文包括以下内容SELinux概念启用SELinux管理文件安全标签管理端口标签管理SELinux布尔值开关管理日志查看SELinux帮助   SELinux介绍SELinux: Secure Enhanced Linux,是美国国家安全局(NSA=The National Se…

    Linux干货 2016-09-21
  • 萝卜运维记-第二周

    part2–针对文件命令的介绍,使用,演示 Ⅰ Linux文件管理类命令常用方法 Ⅱ bash的工作特性,相关示例 Ⅲ 文件的元数据有哪些,以及所代表的含义。 Ⅳ 相关命令的操作,和结果演示。 ①Linux文件管理命令常用方法 Linux常见文件类型 -:常规文件;即f; d: directory…

    Linux干货 2016-12-12
  • 在/tmp目录下创建以tfile开头,后跟当前日期和时间的文件

    在/tmp目录下创建以tfile开头,后跟当前日期和时间的文件,文件名形如:tfile-2016-05-27-09-32-22。 ~]# touch /tmp/tfile-$(date +%Y-%m-%d-%H-%M-%S) ~]# tree /tmp 查看输出结果 复制/etc目录下所有以p开头,以非数字结尾的文件或目录到/tmp/mytest1目录中。 …

    Linux干货 2016-11-06
  • linux第五周小结

    不知不觉已经第五周了,好快啊!这周我们主要讲了读命令,查找命令,压缩,解压缩,安装等命令,今天我总结一下查找命令 查找命令主要有:locate和find命令,但我们经常用到的也最实用的当属find,下面我重点总结一下find命令 有时可能需要在系统中查找具有某一特征的文件(例如文件权限、文件属主、文件长度、文件类型等等)。这样做可能有很多原因。可能出于安全性…

    2017-08-13
  • yum报错2

    我的系统是centos 6.8 x86的; 安装pam_mysql时报错如下: [root@Ams ~]# yum install pam_mysql -y Loaded plugins: fastestmirror, refresh-packagekit, security Setting up Install Process Loading mirror…

    Linux干货 2016-08-02