博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Markdown 语法整理
阅读量:6119 次
发布时间:2019-06-21

本文共 4316 字,大约阅读时间需要 14 分钟。

2015年7月24日14:57:49

一、字体设置

A First Level Header==A Second Level Header--  # 标题   ## 标题### 标题#### 标题##### 标题###### 标题

注:换行 两个空格

二、修辞和强调

Markdown 使用星号和底线来标记需要强调的区段。    加粗:   **Blod**	标亮:

请把我标亮` 请把我标亮

一级列表:  - dd  rrrrrrrrrrr- ee  eeeeeeeeeeeee    1.eee  rrrrrrrrrrrrrr  2.rtt  eeeeeeeeeeeeeeeeeeeeeeeee  二级列表:   - 列表 1 - 列表 1.1 - 列表 1.2   图片:    图片链接
[![sufei](http://images0.cnblogs.com/blog2015/380252/201507/251145474218748.png)](http://www.baidu.com)   图片   ![image](http://images0.cnblogs.com/blog2015/380252/201507/251145474218748.png)   添加超链接  [白宁超博客园](http:www.cnblogs.com/baiboy)   引用:  翻译成html就是,符号后的空格可不要  :>   本文介绍Markdown基本语法,内容很少,一行语法一行示例,学会后可轻松写出高大上的文档,再也不需要各种编辑器去调文章格式。另外,网上有各平台下的Markdown工具可用,也有在线的,我直接使用sublime搞定,Markdown本来就是为了追求简洁,弄个工具岂不多此一举。段落:      这是段落    这是段落    添加代码:```c#        private void save()        {            try            {                if (textBox3.Text != "")                {                    XDocument doc = XDocument.Load(file);                     //sql数据库数据库配置                    //string connstring = "initial catalog=Highway;Data Source=" + this.textBox3.Text + ";uid=" + this.textBox4.Text + ";pwd=" + this.textBox5.Text + ";";                   //access数据库远程配置                    //Provider=Microsoft.ACE.OLEDB.12.0;Data Source=//10.130.16.136/db/Legal.accdb                    string connstring = @"Provider=Microsoft.ACE.OLEDB.12.0;Data Source=//" + textBox3.Text.ToString()+ "/db/Legal.accdb";                    doc.Elements("configuration").Elements("connectionStrings").Elements("add").Attributes("connectionString").FirstOrDefault().SetValue(connstring);                    doc.Save(file);                    //由于DBHelperSQL中的ConnectionString(公共静态变量)未被修改引发的bug                    XDocument xdoc = XDocument.Load(file);                    string val = doc.Elements("configuration").Elements("connectionStrings").Elements("add").Attributes("connectionString").FirstOrDefault().Value;                    SQLHelper.connstr = val;                }                else                {                    return;                }            }            catch (Exception ex)            {                MessageBox.Show(ex.Message+ex.StackTrace);                //MessageBox.Show("数据库保存失败!!");            }        }```第一列 | 第二列 | 第三列 | 第四列  ----- | ----- | ----- | -----  第一行 | 文本二 | 文本三 | 文本四  第二行 | 文本二 | 文本三 | 文本四    Markdown 语法:

Some of these words *are emphasized*. Some of these words _are emphasized also_. Use two asterisks for **strong emphasis**. Or, if you prefer, __use two underscores instead__.


HTML实现:

Some of these words are emphasized. Some of these words are emphasized also. Use two asterisks for strong emphasis. Or, if you prefer, use two underscores instead.

三、列表

无序列表使用星号、加号和减号来做为列表的项目标记.  使用星号:     * Canny.                             * Gum.  * Booze   加号:     + Cany.  + Gum.  + Booze.  和减号  - Candy.  - Gum.  - Booze.  都会输出 HTML 为:
  • Candy.
  • Gum.
  • Booze.
有序的列表则是使用一般的数字接着一个英文句点作为项目标记:  1. Red  2. Green  3. Blue输出 HTML 为:
  1. Red
  2. Green
  3. Blue

四、链接

Markdown 支援两种形式的链接语法:行内和参考两种形式,两种都是使用角括号来把文字转成连结。行内形式是直接在后面用括号直接接上链接:

This is an [百度](http://www.baidu.com/).

参数:

This is an [我的博客](http://www.cnblogs.com/baiboy).

多链接I get 10 times more traffic from [Google][1] than from[Yahoo][2] or [MSN][3].[1]: http://google.com/ "Google"[2]: http://search.yahoo.com/ "Yahoo Search"[3]: http://search.msn.com/ "MSN Search"OR  I start my morning with a cup of coffee and[The New York Times][NY Times].[ny times]: http://www.nytimes.com/

五、图片

图片的语法和链接很像。  行内形式(title 是选择性的):![alt sufei](./I:/image/sufei.png "sufei")   参考形式:  ![alt text][id22]   [id22]: /I:/image/sufei.png "Title"

alt text

六、代码

在一般的段落文字中,你可以使用反引号 ` 来标记代码区段,区段内的 &、< 和 > 都会被自动的转换成 HTML 实体,这项特性让你可以很容易的在代码区段内插入 HTML 码:I strongly recommend against using any `` tags.I wish SmartyPants used named entities like `—`instead of decimal-encoded entites like `—`.If you want your page to validate under XHTML 1.0 Strict,you've got to put paragraph tags in your blockquotes:

public static ArrayList BindB(string type) { ArrayList al = new ArrayList(); string sql = "select * from B_type where aname='" + type + "'"; DataSet ds = MYHelper.SQLHelper.GetSetData(sql); if (ds.Tables[0].Rows.Count > 0) { for (int j = 0; j < ds.Tables[0].Rows.Count; j++) { al.Add(ds.Tables[0].Rows[j]["bname"].ToString()); } } return al; }

你可能感兴趣的文章
2015第31周日
查看>>
在使用EF开发时候,遇到 using 语句中使用的类型必须可隐式转换为“System.IDisposable“ 这个问题。...
查看>>
Oracle 如何提交手册Cluster Table事务
查看>>
BeagleBone Black第八课板:建立Eclipse编程环境
查看>>
在服务器上用Fiddler抓取HTTPS流量
查看>>
文件类似的推理 -- 超级本征值(super feature)
查看>>
【XCode7+iOS9】http网路连接请求、MKPinAnnotationView自定义图片和BitCode相关错误--备用...
查看>>
各大公司容器云的技术栈对比
查看>>
记一次eclipse无法启动的排查过程
查看>>
【转】jmeter 进行java request测试
查看>>
读书笔记--MapReduce 适用场景 及 常见应用
查看>>
SignalR在Xamarin Android中的使用
查看>>
Eclipse和MyEclipse使用技巧--Eclipse中使用Git-让版本管理更简单
查看>>
[转]响应式表格jQuery插件 – Responsive tables
查看>>
8个3D视觉效果的HTML5动画欣赏
查看>>
C#如何在DataGridViewCell中自定义脚本编辑器
查看>>
【linux】crontab定时命令
查看>>
Android UI优化——include、merge 、ViewStub
查看>>
Office WORD如何取消开始工作右侧栏
查看>>
Android Jni调用浅述
查看>>