入门指南
语法速查表
基本语法
标题语法
段落语法
换行语法
强调语法
引用语法
列表语法
代码语法
分隔线语法
链接语法
图片语法
转义字符语法
内嵌 HTML 标签
扩展语法
扩展语法可用性
表格
围栏代码块
脚注
标题编号
定义列表
删除线
任务列表语法
使用 Emoji 表情
Highlight
Subscript
自动网址链接
禁止自动将 URL 转换为链接
Hacks
Underline
Indent (Tab)
Center
Color
Comments
Admonitions
Image Size
Image Captions
Link Targets
Symbols
Table Formatting
Table of Contents
Videos
书写工具
段落语法 - markdown入门指南 - 笔下光年
网站首页
段落语法
要创建段落,请使用空白行将一行或多行文本进行分隔。 <table class="table table-bordered"><thead class="thead-light"><tr><th>Markdown</th><th>HTML</th><th>渲染效果</th></tr></thead><tbody><tr><td><code class="highlighter-rouge">I really like using Markdown.<br/><br/>I think I'll use it to format all of my documents from now on.</code></td><td><code class="highlighter-rouge"><p>I really like using Markdown.</p><br /><br /><p>I think I'll use it to format all of my documents from now on.</p></code></td><td><p>I really like using Markdown.</p><p>I think I'll use it to format all of my documents from now on.</p></td></tr></tbody></table> ## 段落(Paragraph)用法的最佳实践 除非段落在列表中,否则不要用空格(spaces)或制表符( tabs)缩进段落。 <div class="callout callout-info mb-3"><strong>Note:</strong> If you need to indent paragraphs in the output, see the section on how to <a href="/hacks/#indent-tab">indent (tab)</a>. </div> <table class="table table-bordered"><thead class="thead-light"><tr><th>✅ 这样做</th><th>❌ 不要这样做</th></tr></thead><tbody><tr><td><code class="highlighter-rouge">Don't put tabs or spaces in front of your paragraphs.<br /><br />Keep lines left-aligned like this.</code></td><td><code class="highlighter-rouge"> This can result in unexpectedformatting problems.<br /><br /> Don't add tabs or spaces in front of paragraphs.</code></td></tr></tbody></table>
上一篇:
标题语法
下一篇:
换行语法