markdown基本用法小结
可读性,无论如何,都是最重要的。一份使用 markdown 格式撰写的文件应该可以直接以纯文本发布,并且看起来不会像是由许多标签或是格式指令所构成。markdown 语法受到一些既有 text-to-html 格式的影响,包括 setext、atx、textile、restructuredtext、grutatext 和 ettext,而最大灵感来源其实是纯文本电子邮件的格式。
0x00
在编写文章中,少不了标题的使用,在markdown中有多种设置标题的方式。
|
|
0x01
首先在编写文章中,我们也要注意段落的美观,段落的格式设置也是极其重要的。
引入块的概念,用一块块的位置显示一部分内容,显得层次感分明,先忙就是我们引入了块的使用结果。
print aaaa
print bbbb
print cccc
0x02
接着,我们有的时候需要对我们的一些观点或者见解分出一个顺序或者无序的操作。
无序
* red
* green
* blue
有序
1. red
2. green
3. blue
0x03
做为一个程序员,在编写文件的时候,少不了要用的就是关键代码的记忆。
---
poc
---
http://server/wp_path/wp-content/plugins/mailz/ lists/>config/config.php?wpabspath=rfi
---
vulnerable code
---
if ( isset($_get['wpabspath']) ) {
//zingiri
//error_reporting(e_all & ~e_notice);
//ini_set('display_errors', '1');
define('abspath', dirname(__file__) . '/');
require($_get['wpabspath'].'wp-config.php');
或者使用*号,里面放着源代码,这样也补觉简单
0x04
还有,对于一些重要的东西,我们要学会强调,把重要的东西凸显出来。
同时在**编写**文章中
同时在__编写__文章中。
**double asterisks**
__double underscores__
0x05
最后我们引入链接,在我们写一些文章,做一些比较的时候,难免会引用到别人的文章,这个时候我们应该把它们的链接发上来。
链接构造
[google][]
[google]: http://baidu.com/
visit [aaaaa][] for more information.
[aaaaa]: http://daringfireball.net/
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"
i get 10 times more traffic from [google][] than from
[yahoo][] or [msn][].
[google]: http://google.com/ "google"
[yahoo]: http://search.yahoo.com/ "yahoo search"
[msn]: http://search.msn.com/ "msn search"
this is an [example link](http://example.com/).
0x06
markdown基本用法小结
=================
0x00
-
**在编写文章中,少不了标题的使用,在markdown中有多种设置标题的方式。**
第一种方式,#1,##2,设置各级标题
第二种方式,-文字- 设置各级标题,
0x01
-
**首先在编写文章中,我们也要注意段落的美观,段落的格式设置也是极其重要的。**
> 引入块的概念,用一块块的位置显示一部分内容,显得层次感分明,先忙就是我们引入了块的使用结果。
>> print aaaa
>> print bbbb
>> print cccc
0x02
-
**接着,我们有的时候需要对我们的一些观点或者见解分出一个顺序或者无序的操作。**
> 无序
>> * red
>> * green
>> * blue
> 有序
>> 1. red
>> 2. green
>> 3. blue
0x03
-
**做为一个程序员,在编写文件的时候,少不了要用的就是关键代码的记忆。**
>>
> ---
> poc
> ---
>> http://server/wp_path/wp-content/plugins/mailz/ lists/>>config/config.php?wpabspath=rfi
>>
>> ---
>> vulnerable code
>> ---
>> if ( isset($_get['wpabspath']) ) {
>> //zingiri
>> //error_reporting(e_all & ~e_notice);
>> //ini_set('display_errors', '1');
>> define('abspath', dirname(__file__) . '/');
>> require($_get['wpabspath'].'wp-config.php');
> 或者使用*号,里面放着源代码,这样也补觉简单
0x04
-
**还有,对于一些重要的东西,我们要学会强调,把重要的东西凸显出来。**
> 同时在**编写**文章中
> 同时在__编写__文章中。
> **double asterisks**
> __double underscores__
0x05
-
**最后我们引入链接,在我们写一些文章,做一些比较的时候,难免会引用到别人的文章,这个时候我们应该把它们的链接发上来。**
> 链接构造
>> [google][]
>> [google]: http://baidu.com/
>> visit [aaaaa][] for more information.
>> [aaaaa]: http://daringfireball.net/
>> 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"
>> i get 10 times more traffic from [google][] than from
[yahoo][] or [msn][].
[google]: http://google.com/ "google"
[yahoo]: http://search.yahoo.com/ "yahoo search"
[msn]: http://search.msn.com/ "msn search"