學習筆記 - MarkDown 語法

學習參考網址:https://www.appinn.com/markdown/index.html

  


# **gitskill**## 標題 ># 這是 H1 >## 這是 H2 >###### 這是 H6## 區塊引用 Blockquotes > This is a blockquote with two paragraphs. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi, viverra nec, fringilla in, laoreet vitae, risus.> Donec sit amet nisl. Aliquam semper ipsum sit amet velit. Suspendisse id sem consectetuer libero luctus adipiscing.--- > #### 這是一個標題。 > > 1. 這是第一行列表項。 > 2. 這是第二行列表項。 > > 給出一些例子代碼: > > return shell_exec("echo $input | $markdown_script");## 列表 * Lorem ipsum dolor sit amet, consectetuer adipiscing elit.Aliquam hendrerit mi posuere lectus. Vestibulum enim wisi,viverra nec, fringilla in, laoreet vitae, risus. * Donec sit amet nisl. Aliquam semper ipsum sit amet velit.Suspendisse id sem consectetuer libero luctus adipiscing.--- 1. This is a list item with two paragraphs. Lorem ipsum dolorsit amet, consectetuer adipiscing elit. Aliquam hendreritmi posuere lectus.Vestibulum enim wisi, viverra nec, fringilla in, laoreetvitae, risus. Donec sit amet nisl. Aliquam semper ipsumsit amet velit.2. Suspendisse id sem consectetuer libero luctus adipiscing.--- 避免數字+點+空格 格式生成列表 1986\. What a great season.## 代碼區塊 Here is an example of AppleScript:tell application "Foo"beepend tell## 鏈接 ### 行內式 This is [an example](http://example.com/ "Title") inline link.[This link](http://example.net/) has no title attribute.--- 鏈接主機資源,使用相對路徑 See my [About](/about/) page for details.### 參考式 This is [an example][id] reference-style link. [id]: <http://example.com/> "Optional Title Here"--- 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"## 強調 *single asterisks*_single underscores_**double asterisks**__double underscores__\*this text is surrounded by literal asterisks\*## 代碼, 標記一小段行內代碼 Use the `printf()` function.## 圖片 ![Alt text](/path/to/img.jpg)![Alt text](/path/to/img.jpg "Optional title")## 自動鏈接 只要用符號<>標記起來 <address@example.com>

  

轉載于:https://www.cnblogs.com/blitheG/p/8469467.html

本文來自互聯網用戶投稿,該文觀點僅代表作者本人,不代表本站立場。本站僅提供信息存儲空間服務,不擁有所有權,不承擔相關法律責任。
如若轉載,請注明出處:http://www.pswp.cn/news/278400.shtml
繁體地址,請注明出處:http://hk.pswp.cn/news/278400.shtml
英文地址,請注明出處:http://en.pswp.cn/news/278400.shtml

如若內容造成侵權/違法違規/事實不符,請聯系多彩編程網進行投訴反饋email:809451989@qq.com,一經查實,立即刪除!

相關文章

[BZOJ4671]異或圖

description BZOJ 定義兩個結點數相同的圖\(G1\)與圖\(G2\)的異或為一個新的圖\(G\), 其中如果\((u,v)\)在\(G1\)與\(G2\)中的出現次數之和為\(1\), 那么邊\((u,v)\)在\(G\)中, 否則這條邊不在\(G\)中. 現在給定\(s\)個結點數相同的圖\(G1...s\),設\(S{G1,G2,...,Gs},\) 問\(S\…

我們生活在最好的時代

2019獨角獸企業重金招聘Python工程師標準>>> 沒規劃的人生叫拼圖&#xff0c;有規劃的人生叫藍圖&#xff1b; 沒目標的人生叫流浪&#xff0c;有目標的人生叫航行&#xff01; 我們生活在最好的時代&#xff1a;在認知和學習機會上&#xff0c;人人平等&#xff0c…

MapReduce詳解和WordCount模擬

最早接觸大數據&#xff0c;常縈繞耳邊的一個詞「MapReduce」。它到底是什么&#xff0c;能做什么&#xff0c;原理又是什么&#xff1f;且聽下文講解。 是什么 MapReduce 即是一個編程模型&#xff0c;又是一個計算框架&#xff0c;它充分采用了分治的思想&#xff0c;將數據處…

無法創建系統映像_如何創建USB驅動器的映像

無法創建系統映像You can back up your USB drive by creating a saved image. You can then take that saved image and clone multiple USB sticks. This guide shows you how to create an image of your USB drive using Windows 10. 您可以通過創建保存的圖像來備份USB驅動…

UGUI事件之Drag拖拽事件

UI事件之Drag拖拽事件2.UGUI 事件命名空間   當我們需要使用 UGUI 中的事件的時候&#xff0c;需要在腳本內引入專有命名空間&#xff1a;   using UnityEngine.EventSystems;----------------------------------2.拖拽相關事件接口----------------------------------1.三…

java 通過cookie判斷是否登陸

protected void doGet(HttpServletRequest req, HttpServletResponse resp)throws ServletException, IOException {// 判斷cookie是否有登錄信息Cookie[] cookies req.getCookies();boolean isLogin false;for(Cookie c : cookies){if("loginInfo".equals(c.getNa…

使用高級管理控制臺獲得對Windows Home Server的擴展訪問

Windows Home Server is easy to setup and use so anyone with basic computer knowledge can operate their own server. But what if you’re an advanced user and want more control over various administrative functions? The Advanced Admin Console Addin gives you…

變動性算法源代碼分析與使用示例(copy_backward、 transform、 replace_copy_if 等)

首先回顧前面的文章&#xff0c;我們把for_each 歸類為非變動性算法&#xff0c;實際上它也可以算是變動性算法&#xff0c;取決于傳入的第三個參數&#xff0c;即函數 指針。如果在函數內對容器元素做了修改&#xff0c;那么就屬于變動性算法。 變動性算法源代碼分析與使用示例…

[轉]QDir類及其用法總結

直接給出原文鏈接&#xff1a;QDir類及其用法總結 轉載于:https://www.cnblogs.com/rainbow70626/p/10330643.html

如何在Outlook中的電子郵件上顯示快速操作按鈕

There are probably actions you regularly perform in Outlook, such as deleting, archiving, and marking things as read. Here’s how to use Quick Action buttons to add one-click options that appear over every email to perform each action. 您可能會在Outlook中定…

c++讀取和寫入TXT文件的整理

c讀取和寫入TXT文件的整理 #include "stdafx.h" #include <iostream> //無論讀寫都要包含<fstream>頭文件 #include <fstream> #include <iomanip> using namespace std;int main() {//ifstream從文件流向內存的ifstream表示文件輸入流…

使用RestTemplate時報錯java.lang.IllegalStateException: No instances available for 127.0.0.1

我在RestTemplate的配置類里使用了 LoadBalancedComponentpublic class RestTemplateConfig { Bean LoadBalanced public RestTemplate restTemplate(){ return new RestTemplate(); }}或者 再調用Autowiredprivate RestTemplate restTemplate;必須使用應用名作為代替ip:端口&a…

sh變量特性(3)默認特性

變量說明$0當前腳本的文件名$n傳遞給腳本或函數的參數&#xff0c;n是數字&#xff0c;第n個參數$#傳遞給腳本或函數的參數個數$*傳遞給腳本或函數的所有參數$傳遞給腳本或函數的所有參數。被””包含時&#xff0c;與$*稍有不同$?上個命令的退出狀態&#xff0c;或函數返回值…

zune linux_更新您的Zune Player軟件

zune linuxKeeping your computer and software up to date is very important in keeping everything running smooth and secure. It’s also important to keep your geeky gadgets updated as well. Here we take a look at updating a Zune HD. 保持計算機和軟件的最新狀態…

繼承的幾種方式

1.借助構造函數實現繼承 function Parent() { this.name parent } Parent.prototype.say function () { // 不能被繼承 this.say function() { console.log(hello this.name) } } function Child() { Parent.call(this) this.type child } console.log(new Child) // 沒有參…

寫一個簡單的 django_post demo

1.新建一個django工程&#xff0c;其路由為下圖 2.要做的是一個 簡單的登錄請求&#xff0c;以表單形式提交&#xff0c;html 部分代碼如下 這里注意action指向的是路由的地址&#xff0c;index1后的views.login部分代碼如下 這段代碼指的是&#xff0c;如果login接收到的請求是…

日志收集

2019獨角獸企業重金招聘Python工程師標準>>> ELK (ElasticSearch、Logstash、Kibana)&#xff1a; https://my.oschina.net/itblog/blog/547250 轉載于:https://my.oschina.net/zfscofield/blog/1625703

autocopy2u_借助AutoCopy簡化Firefox中的文本復制和粘貼

autocopy2uLooking for an easy way to speed up copying and pasting in Firefox? Now you can reduce the amount of work that you have to do by half with AutoCopy. 是否在尋找一種簡便的方法來加快Firefox中的復制和粘貼&#xff1f; 現在&#xff0c;您可以使用自動復…

virtualenv模塊使用

開發多個應用&#xff1a; 如A需要jinja2.7開發&#xff1b;如B需要jinja2.6開發。或者C需要Python2.7開發&#xff0c;D需要Python3.5開發 那么解決上述問題就需要使用virtualenv這個模塊&#xff1a; 它的作用是&#xff1a;創建“隔離”環境&#xff0c;使項目擁有獨立的Pyt…

僵尸進程處理方式

Linux服務器上&#xff0c;多少會出現一些僵尸進程&#xff0c;下面介紹如何快速尋找和消滅這些僵尸進程的方法 首先&#xff0c;我們可以用top命令來查看服務器當前是否有僵尸進程&#xff0c;在下圖中可以看到僵尸進程數的提示&#xff0c;如果數字大于0&#xff0c;那么意味…