惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Cloudbric
Cloudbric
E
Exploit-DB.com RSS Feed
SecWiki News
SecWiki News
Forbes - Security
Forbes - Security
N
News | PayPal Newsroom
S
Security @ Cisco Blogs
Schneier on Security
Schneier on Security
V
V2EX - 技术
S
Secure Thoughts
W
WeLiveSecurity
Google DeepMind News
Google DeepMind News
C
CERT Recently Published Vulnerability Notes
NISL@THU
NISL@THU
S
Securelist
S
Security Archives - TechRepublic
Know Your Adversary
Know Your Adversary
V
Vulnerabilities – Threatpost
Security Latest
Security Latest
Recent Commits to openclaw:main
Recent Commits to openclaw:main
G
GRAHAM CLULEY
H
Hacker News: Front Page
Microsoft Azure Blog
Microsoft Azure Blog
I
Intezer
Google Online Security Blog
Google Online Security Blog
美团技术团队
阮一峰的网络日志
阮一峰的网络日志
T
The Exploit Database - CXSecurity.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Webroot Blog
Webroot Blog
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
P
Proofpoint News Feed
The Cloudflare Blog
I
InfoQ
L
LangChain Blog
U
Unit 42
P
Proofpoint News Feed
S
Schneier on Security
S
Security Affairs
Y
Y Combinator Blog
T
Tenable Blog
N
News and Events Feed by Topic
MyScale Blog
MyScale Blog
量子位
Google DeepMind News
Google DeepMind News
Cyberwarzone
Cyberwarzone
博客园 - 聂微东
D
Darknet – Hacking Tools, Hacker News & Cyber Security
GbyAI
GbyAI
AWS News Blog
AWS News Blog

博客园 - 丁保国

单点登录系统(SSO)详细设计说明书(上篇) ALBPM Service Config 《编写高质量代码》读书笔记一 皓首穷经还是及时行乐! 有用的iOS网站地址 [股票] 入市 Record[Loop]_To_Element Get Started with EC2 准备工作 写在黎明的前夕 - 丁保国 我希望有一套自己的房子 第15章 泛型 第11章 持有对象 第17章 容器深入研究 断点续传的原理 - 丁保国 linux中waitpid系统调用 在Linux系统环境下安装配置JDK常用方法 感冒 《 Linux的安装和入门 》
[转] Markdown
丁保国 · 2016-01-13 · via 博客园 - 丁保国

转自 https://en.wikipedia.org/wiki/Markdown#Example

英文版本 - http://daringfireball.net/projects/markdown/syntax

繁体版本 - http://markdown.tw/

简体版本 - http://www.appinn.com/markdown/

好用的Markdown编辑器一览 - http://www.williamlong.info/archives/4319.html
Markdown在线编辑器
1. http://dillinger.io/
2. https://markable.in/

Windows 平台 - MarkdownPad(http://www.markdownpad.com/) 一款全功能的编辑器,被很多人称赞为windows 平台最好用的markdown编辑器

优化Markdown在Notepad++中的使用体验
1. http://www.jianshu.com/p/cdb42773fffe
2. http://xuhehuan.com/2237.html

text using Markdown syntaxthe corresponding HTML produced by a Markdown processorthe text viewed in a browser
Heading
=======

Sub-heading
-----------
 
### Another deeper heading
 
Paragraphs are separated
by a blank line.

Leave 2 spaces at the end of a line to do a  
line break

Text attributes *italic*, **bold**, 
`monospace`, ~~strikethrough~~ .

Shopping list:

  * apples
  * oranges
  * pears

Numbered list:

  1. apples
  2. oranges
  3. pears

The rain---not the reign---in
Spain.

A [link](http://example.com).
[28]
<h1>Heading</h1>

<h2>Sub-heading</h2>

<h3>Another deeper heading</h3>

<p>Paragraphs are separated
by a blank line.</p>

<p>Leave 2 spaces at the end of a line to do a<br />
line break</p>

<p>Text attributes <em>italic</em>, <strong>bold</strong>,
<code>monospace</code>, <s>strikethrough</s>.</p>

<p>Shopping list:</p>

<ul>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ul>

<p>Numbered list:</p>

<ol>
<li>apples</li>
<li>oranges</li>
<li>pears</li>
</ol>

<p>The rain&mdash;not the
reign&mdash;in Spain.</p>

<p>A <a href="http://example.com">link</a>.</p>

Heading

Sub-heading

Another deeper heading

Paragraphs are separated by a blank line.

Leave 2 spaces at the end of a line to do a
line break

Text attributes italic, bold, monospace, strikethrough.

Shopping list:

  • apples
  • oranges
  • pears

Numbered list:

  1. apples
  2. oranges
  3. pears

The rain—not the reign—in Spain.

A link.