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

推荐订阅源

Martin Fowler
Martin Fowler
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
IT之家
IT之家
罗磊的独立博客
博客园_首页
月光博客
月光博客
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
量子位
Hugging Face - Blog
Hugging Face - Blog
G
Google Developers Blog
博客园 - 叶小钗
H
Help Net Security
N
Netflix TechBlog - Medium
B
Blog
Engineering at Meta
Engineering at Meta
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
V
V2EX
Vercel News
Vercel News
博客园 - 三生石上(FineUI控件)

博客园 - 丁保国

单点登录系统(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.