README 语法编写
推荐一个超棒的软件 haroopad
Standard Markdown
- \ backslash
- ` backtick
- * asterisk
- _ underscore
- {} curly braces
- [] square brackets
- () parentheses
- # hash mark
- + plus sign
- - minus sign (hyphen)
- . dot
- ! exclamation mark
- \ backslash
- ` backtick
- * asterisk
- _ underscore
- {} curly braces
- [] square brackets
- () parentheses
- # hash mark
- + plus sign
- - minus sign (hyphen)
- . dot
- ! exclamation mark
HEADERS
This is an H1
=============
This is an H2
-------------
Any number of underlining =’s or -’s will work.
# This is an H1
## This is an H2
###### This is an H6
This is an H1 ============= This is an H2 -------------
Any number of underlining =’s or -’s will work.
# This is an H1 ## This is an H2 ###### This is an H6
BLOCKQUOTES
> This is the first level of quoting.
>
> > This is nested blockquote.
>
> Back to the first level.
Blockquotes can contain other Markdown elements, including headers, lists, and code blocks:
> ## This is a header.
>
> 1. This is the first list item.
> 2. This is the second list item.
>
> Here's some example code:
>
> return shell_exec("echo $input | $markdown_script");
> This is the first level of quoting. > > > This is nested blockquote. > > Back to the first level.
Blockquotes can contain other Markdown elements, including headers, lists, and code blocks:
> ## This is a header. > > 1. This is the first list item. > 2. This is the second list item. > > Here's some example code: > > return shell_exec("echo $input | $markdown_script");
LISTS
* Red
* Green
* Blue
is equivalent to:
+ Red
+ Green
+ Blue
and:
- Red
- Green
- Blue
Ordered lists use numbers followed by periods:
1. Bird
2. McHale
3. Parish
* Red * Green * Blue
is equivalent to:
+ Red + Green + Blue
and:
- Red - Green - Blue
Ordered lists use numbers followed by periods:
1. Bird 2. McHale 3. Parish
CODE BLOCKS
This is a normal paragraph:
This is a code block.
One level of indentation — 4 spaces or 1 tab — is removed from each line of the code block. For example, this:
Here is an example of AppleScript:
tell application "Foo"
beep
end tell
This is a normal paragraph: This is a code block.
One level of indentation — 4 spaces or 1 tab — is removed from each line of the code block. For example, this:
Here is an example of AppleScript: tell application "Foo" beep end tell
HORIZONTAL RULES
* * *
***
*****
- - -
---------------------------------------
* * * *** ***** - - - ---------------------------------------
LINKS
This is [an example](http://example.com/ "Title") inline link.
[This link](http://example.net/) has no title attribute.
Here’s an example of reference links in action:
I get 10 times more traffic from [Google][] than from
[Yahoo][] or [MSN][].
This is [an example](http://example.com/ "Title") inline link. [This link](http://example.net/) has no title attribute.
Here’s an example of reference links in action:
I get 10 times more traffic from [Google][] than from [Yahoo][] or [MSN][].
EMPHASIS
*single asterisks*
_single underscores_ (not support in haroopad)
**double asterisks**
__double underscores__
*single asterisks* _single underscores_ (not support in haroopad) **double asterisks** __double underscores__
CODE
Use the `printf()` function.
Use the printf()
function.
Use the `printf()` function.
Use the printf()
function.
IMAGES


![Alt text][id]
  ![Alt text][id]
Contact to <example@example.com>.
Contact to example@example.com.
Contact to <example@example.com>.
Contact to example@example.com.
Github Flavored Markdown
Newlines
The next paragraph contains two phrases separated by a single newline character
Haroopad
The next document processor
Haroopad
The next document processor
The next paragraph contains two phrases separated by a single newline character
Haroopad The next document processor
Haroopad
The next document processor
Multiple underscores in words
It is not reasonable to italicize just part of a word, especially when you're dealing with code and names often appear with multiple underscores. Therefore, GFM ignores multiple underscores in words.
perform_complicated_task
do_this_and_do_that_and_another_thing
perform_complicated_task do_this_and_do_that_and_another_thing
It is not reasonable to italicize just part of a word, especially when you're dealing with code and names often appear with multiple underscores. Therefore, GFM ignores multiple underscores in words.
perform_complicated_task do_this_and_do_that_and_another_thing
perform_complicated_task do_this_and_do_that_and_another_thing
URL autolinking
GFM will autolink standard URLs, so if you want to link to a URL (instead of setting link text), you can simply enter the URL and it will be turned into a link to that URL.
GFM will autolink standard URLs, so if you want to link to a URL (instead of setting link text), you can simply enter the URL and it will be turned into a link to that URL.
Table
Tables aren't part of the core Markdown spec, but they are part of GFM and Markdown Here supports them.
Colons(:) can be used to align columns.
Left : |:------|
Right : |------:|
Center : |:-----:|
| name | age | gender | money |
|-------|:---:|-----------|-------:|
| rhio | 384 | robot | $3,000 |
| haroo | .3 | bird | $430 |
| jedi | ? | undefined | $0 |
name
age
gender
money
rhio
384
robot
$3,000
haroo
.3
bird
$430
jedi
?
undefined
$0
Tables aren't part of the core Markdown spec, but they are part of GFM and Markdown Here supports them.
Colons(:) can be used to align columns.
Left : |:------|
Right : |------:|
Center : |:-----:|
| name | age | gender | money | |-------|:---:|-----------|-------:| | rhio | 384 | robot | $3,000 | | haroo | .3 | bird | $430 | | jedi | ? | undefined | $0 |
name | age | gender | money |
---|---|---|---|
rhio | 384 | robot | $3,000 |
haroo | .3 | bird | $430 |
jedi | ? | undefined | $0 |
Fenced code blocks
Markdown converts text with four spaces at the front of each line to code blocks. GFM supports that, but we also support fenced blocks. Just wrap your code blocks in ``` and you won't need to indent manually to trigger a code block. Keep in mind that both types of code blocks need to have a blank line before them:
Here's an example:
function test() {
console.log("notice the blank line before this function?");
}
Markdown converts text with four spaces at the front of each line to code blocks. GFM supports that, but we also support fenced blocks. Just wrap your code blocks in ``` and you won't need to indent manually to trigger a code block. Keep in mind that both types of code blocks need to have a blank line before them:
Here's an example:
function test() { console.log("notice the blank line before this function?"); }
Syntax highlighting
We take code blocks a step further and add syntax highlighting if you request it. In your fenced block, add an optional language identifier and we'll run it through syntax highlighting. For example, to syntax highlight Ruby code:
require 'redcarpet'
markdown = Redcarpet.new("Hello World!")
puts markdown.to_html
We take code blocks a step further and add syntax highlighting if you request it. In your fenced block, add an optional language identifier and we'll run it through syntax highlighting. For example, to syntax highlight Ruby code:
require 'redcarpet' markdown = Redcarpet.new("Hello World!") puts markdown.to_html
Table of Contents
A table of contents, usually headed simply "Contents" and abbreviated informally as TOC, is a list of the parts of a book or document organized in the order in which the parts appear.
It will generate a table of content that you can insert [TOC]
at the top of your markdown file.
[TOC]
# Header 1
Content 1
## Header 2
Content 2
example
[TOC]
A table of contents, usually headed simply "Contents" and abbreviated informally as TOC, is a list of the parts of a book or document organized in the order in which the parts appear.
It will generate a table of content that you can insert [TOC]
at the top of your markdown file.
[TOC] # Header 1 Content 1 ## Header 2 Content 2
example
[TOC]
Extras (only haroopad)
Experimental since v0.6.0
Experimental since v0.6.0
Highlight
Highlight (and highlights, highlighting, etc.) may refer to:
Syntax ==highlighting==, **display of text** in different colors and/or fonts, depending upon its meaning in context (e.g. different parts of speech in a sentence, or ==function== vs. ==variables names== in computer source code)
Syntax ==highlighting==, display of text in different colors and/or fonts, depending upon its meaning in context (e.g. different parts of speech in a sentence, or ==function== vs. ==variables names== in computer source code)
Highlight (and highlights, highlighting, etc.) may refer to:
Syntax ==highlighting==, **display of text** in different colors and/or fonts, depending upon its meaning in context (e.g. different parts of speech in a sentence, or ==function== vs. ==variables names== in computer source code)
Syntax ==highlighting==, display of text in different colors and/or fonts, depending upon its meaning in context (e.g. different parts of speech in a sentence, or ==function== vs. ==variables names== in computer source code)
Underline
An ++underline++, also called an underscore is one or more horizontal lines immediately below a portion of writing.
An ++underline++, also called an underscore is one or more ++horizontal lines++ immediately below a portion of writing.
An ++underline++, also called an underscore is one or more horizontal lines immediately below a portion of writing.
An ++underline++, also called an underscore is one or more ++horizontal lines++ immediately below a portion of writing.
Embedding
웹 문서를 작성하다 보면 비디오, 음악을 포함한 다양한 온라인 콘텐츠를 이용하기 마련이다. 이에 경량의 문법을 이용하는 마크다운의 특성을 유지하고 기존의 마크다운 사용자 경험에 크게 벗어나지 않으며 강력한 웹 콘텐츠를 문서내에 쉽게 추가할 수 있도록 새로운 문법을 추가하였다.
@[Vimeo Video](https://vimeo.com/70762354 'float:left;width:400px')
**Haroopad** is a markdown enabled document processor for creating web-friendly documents.
You can author professional-looking documents of various formats: blog posts, slides, presentations, reports, email and more.
Haroopad gives you the same editing experience regardless of the platform you are working on. It runs on all three major operating systems—Windows, Mac OS X, and Linux.

Haroopad is a markdown enabled document processor for creating web-friendly documents.
You can author professional-looking documents of various formats: blog posts, slides, presentations, reports, email and more.
Haroopad gives you the same editing experience regardless of the platform you are working on. It runs on all three major operating systems—Windows, Mac OS X, and Linux.

웹 문서를 작성하다 보면 비디오, 음악을 포함한 다양한 온라인 콘텐츠를 이용하기 마련이다. 이에 경량의 문법을 이용하는 마크다운의 특성을 유지하고 기존의 마크다운 사용자 경험에 크게 벗어나지 않으며 강력한 웹 콘텐츠를 문서내에 쉽게 추가할 수 있도록 새로운 문법을 추가하였다.
@[Vimeo Video](https://vimeo.com/70762354 'float:left;width:400px') **Haroopad** is a markdown enabled document processor for creating web-friendly documents. You can author professional-looking documents of various formats: blog posts, slides, presentations, reports, email and more. Haroopad gives you the same editing experience regardless of the platform you are working on. It runs on all three major operating systems—Windows, Mac OS X, and Linux. 
Haroopad is a markdown enabled document processor for creating web-friendly documents.
You can author professional-looking documents of various formats: blog posts, slides, presentations, reports, email and more.
Haroopad gives you the same editing experience regardless of the platform you are working on. It runs on all three major operating systems—Windows, Mac OS X, and Linux.
Mathematics Expression
Haroopad uses MathJax to render LaTeX. You can use triple dollar sign ($$$..$$$
) to delimit inline equations, and double dollars ($$..$$
) for blocks
example
The *Gamma function* satisfying $\Gamma(n) = (n-1)!\quad\forall
n\in\mathbb N$ is via through the Euler integral
$$
\Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,.
$$
become
The Gamma function satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via through the Euler integral
$$ \Gamma(z) = \int_0\infty t{z-1}e{-t}dt\,. $$
Haroopad uses MathJax to render LaTeX. You can use triple dollar sign ($$$..$$$
) to delimit inline equations, and double dollars ($$..$$
) for blocks
example
The *Gamma function* satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via through the Euler integral $$ \Gamma(z) = \int_0^\infty t^{z-1}e^{-t}dt\,. $$
become
The Gamma function satisfying $\Gamma(n) = (n-1)!\quad\forall n\in\mathbb N$ is via through the Euler integral
$$ \Gamma(z) = \int_0\infty t{z-1}e{-t}dt\,. $$
Diagram
This statement helps to render the flow charts and diagrams to extend the fence code block.
Just write the mermaid
grammar in the fenced code block, as in the example below.
You get the detail - Click Here
example
```mermaid
graph TD;
A-->B;
A-->D;
B-->C;
D-->C;
**become**
```mermaid
graph TD;
A-->B;
A-->D;
B-->C;
D-->C;
This statement helps to render the flow charts and diagrams to extend the fence code block.
Just write the mermaid
grammar in the fenced code block, as in the example below.
You get the detail - Click Here
example
```mermaid graph TD; A-->B; A-->D; B-->C; D-->C;
**become** ```mermaid graph TD; A-->B; A-->D; B-->C; D-->C;
Tasklist
So that it can be represented as a checkbox item GFM statement. This statement is useful when you create the TODO or Checklist.
example
- [ ] first task
- [x] second task is done
- [ ] third task
- first task
- second task is done
- third task
So that it can be represented as a checkbox item GFM statement. This statement is useful when you create the TODO or Checklist.
example
- [ ] first task - [x] second task is done - [ ] third task
- first task
- second task is done
- third task
Presentation
Just insert ***
or ---
separator to separate each slide.
example
## slide1 title slide2 content *** ## slide2 title slide2 content
README 语法编写的更多相关文章
- CSDN-markdown语法之怎样使用LaTeX语法编写数学公式
文件夹 文件夹 正文 标记公式 行内公式 块级公式 上标和下标 分数表示 各种括号 根号表示 省略号 矢量表示 间隔空间 希腊字母 特殊字符 关系运算符 集合运算符 对数运算符 三角运算符 微积分运算 ...
- markdown语法之如何使用LaTeX语法编写数学公式
CSDN-markdown语法之如何使用LaTeX语法编写数学公式 目录 目录 正文 标记公式 行内公式 块级公式 上标和下标 分数表示 各种括号 根号表示 省略号 矢量表示 间隔空间 希腊字母 特殊 ...
- GitHub上README.md编写教程(基本语法)
一.标题写法: 第一种方法: 1.在文本下面加上 等于号 = ,那么上方的文本就变成了大标题.等于号的个数无限制,但一定要大于0个哦.. 2.在文本下面加上 下划线 - ,那么上方的文本就变成了中标题 ...
- Github readme语法-- markdown
README 该文件用来测试和展示书写README的各种markdown语法.GitHub的markdown语法在标准的markdown语法基础上做了扩充,称之为GitHub Flavored Mar ...
- readme 语法
README =========================== 该文件用来测试和展示书写README的各种markdown语法.GitHub的markdown语法在标准的markdown语法基础 ...
- README.md 编写
Spring Boot Demo =========================== 该文件用来测试和展示书写README的各种markdown语法.GitHub的markdown语法在标准的ma ...
- 使用 Typora 编辑器运用 Markdown 的语法编写文档
Markdown 介绍 Markdown 是一种轻量级标记语言,它允许人们使用易读易写的纯文本格式编写文档. Markdown 语言在 2004 由约翰·格鲁伯(英语:John Gruber)创建. ...
- Gitlab中README.MD编写格式模板
README.MD文件 格式: 源码: # Hbase组件 ## Maven依赖 ``` <dependency> <groupId>catf</groupId> ...
- README 语法记录
转自:nblogs.com/liugang-vip/p/6337580.html 正文: 1.标题的几种写法: 第一种: 前面带#号,后面带文字,分别表示h1-h6,上图可以看出,只到h6,而 ...
随机推荐
- 【BZOJ1500】【块状链表】维修数列
Description Input 输入文件的第1行包含两个数N和M,N表示初始时数列中数的个数,M表示要进行的操作数目.第2行包含N个数字,描述初始时的数列.以下M行,每行一条命令,格式参见问题描述 ...
- Cocos2dx开发(3)——Cocos2dx打包成APK,ANT环境搭建
前面cocos2dx的运行环境(Android SDK,JDK,),最后Cocos2dx的APK的打包环境,最运行环境上再加ANT环境就好了 1.ANT下载配置 官网下载:http://ant.apa ...
- git config找到下载的路径URL
有时想在别的机器上下载自己的上传的源代码,发现git不像svn那么方便一眼就能看到下载地址,这两天在网上查了一下,终于找到方法了. 一般本地的github目录下总会有一个.git目录,点击进入,可 ...
- Asp.net GridView 72般绝技
快速预览:GridView无代码分页排序GridView选中,编辑,取消,删除GridView正反双向排序GridView和下拉菜单DropDownList结合GridView和CheckBox结合鼠 ...
- centos postfix 邮箱安装记录
---恢复内容开始--- #wget http://nchc.dl.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-2.9 ...
- YII 自动引入juquery进行表单验证
在form表单 里面引入这么一句话 array( 'enableClientValidation'=>true, 'clientOptions'=>array( ...
- CSS远程加载字体
CSS 远程加载字体的方法,做网站CSS的都知道,用户浏览网站时,网页上的字体是加载本地的.换言之,如果网站使用了用户电脑所没有安装的字体,那显示字体就会被默认字体所代替了,自然效果就大受影响了. 上 ...
- python自动开发之第十三天
1.Paramiko模块下的demo.py程序 前面利用Python中的Paramiko模块可以进行SSH的连接,以及用来传送文件(SFTP),但是无论是哪一种方式,连接都是短暂的,并非是长连 ...
- 从linux内核中学到的编程技巧 【转】
从linux内核中学到的编程技巧 分类: LINUX 1构建泛型宏 (./linux/include/linux/kernel.h) #define min(x, y) ({ \ typeof(x ...
- [UOJ Round#4 A] [#51] 元旦三侠的游戏 【容斥 + 递推】
题目链接:UOJ - 51 据说这题与 CF 39E 类似. 题目分析 一看题目描述,啊,博弈论,不会!等待爆零吧... 这时,XCJ神犇拯救了我,他说,这题可以直接搜啊. 注意!是用记忆化搜索,状态 ...