我想写几行文字。它们的格式应正常,除非每行应从第6列开始。也就是说,我不希望代码块格式化规则使此文本块看起来像代码,因为我将使用其他格式(如粗体字等)。如何在Markdown中做到这一点?
:
呢?
我想写几行文字。它们的格式应正常,除非每行应从第6列开始。也就是说,我不希望代码块格式化规则使此文本块看起来像代码,因为我将使用其他格式(如粗体字等)。如何在Markdown中做到这一点?
:
呢?
Answers:
markdown的本机功能无法做到这一点。但是markdown允许内联HTML,因此编写
This will appear with six space characters in front of it
将产生:
这将在其前面显示六个空格字符
如果您可以控制页面上的CSS,则还可以使用标记并对其进行内联或CSS样式设置样式。
无论哪种方式,markdown都不是布局工具,而是简化了Web编写过程,因此,如果您发现自己扩展了其功能集来满足您的需要,则可以查看是否在这里重新使用正确的工具。查看Gruber的文档:
 
Markdown文件中插入(Unicode:\ 2002),并且它们不会像 
在源文件中那样显示-仅当您呈现文件时。只需在操作系统上锻炼快捷键即可插入此字符。
=
)。
 
对于简单和简单的缩进来说非常有用。没有风格/字体的变化,只是压痕👍
 
离选项卡更近。
一种方法是使用项目符号点,它允许您指定多个缩进级别。使用两个空格的倍数(星号,另一个空格)插入项目符号点,例如:
this is a normal line of text
* this is the first level of bullet points, made up of <space><space>*<space>
* this is more indented, composed of <space><space><space><space>*<space>
此方法具有很大的优势,当您查看原始文本时,它也很有意义。
如果您担心自己看不到项目符号要点,则应该(取决于您使用markdown的位置)能够将li {list-style-type: none;}
整个mark down区域添加到CSS中。
这是一个旧线程,但是我认为markdown的blockquotes('>')对此最合适:
依次按Tab,+号,空格和内容
所以
* level one
+ level two tabbed
+
:[tab][space]your-text-goes-here
怎样使用数学环境在段落的开头放置一个确定的空格呢?
$\qquad$ My line of text ...
这对我有用,也希望对您也有用。
为什么要使用另一种标记语言?(我同意上面的@cz)。
Markdown的目标之一是使文档即使在纯文本编辑器中也可读。
编码
Sample code
5th position in an really ugly code
5th position in a clear an readable code
Again using non-breaking spaces :)
结果
示例代码
在非常丑陋的代码中
处于第五位,在清晰易读的代码中处于第五位,
再次使用不间断空格:)
不间断空间(或硬空间)的可视表示形式通常是普通空间“”,但是其Unicode表示形式是U + 00A0。
普通空间的Unicode表示为U + 0020(ASCII表中为32)。
因此,在视觉表示保持相同的同时,文本处理器的行为可能有所不同。
| OS | Input method |
|===========| ==================================|
| macOS | OPTION+SPACE (ALT+SPACE) |
| Linux | Compose Space Space or AltGr+Space|
| Windows | Alt+0+1+6+0 |
Some text editor use Ctrl+Shift+Space.
一些文本编辑器可以在复制和粘贴操作中将硬空间转换为公共空间,因此请当心。
对于带引号/缩进的段落,此技巧可能会起作用(取决于渲染引擎):
| | | |
|-|-|-|
| | _"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."_ | |
|
呈现为:
为了回答MengLu和@lifebalance的问题以响应SColvin的回答(我更喜欢它提供的控件的公认答案),似乎您可以在将显示设置为无时将列表的父元素作为目标,添加必要时加上周围的元素。因此,如果我们假设对目录执行此操作,则可以扩展SColvin的答案:
的HTML
<nav class="table-of-contents">
this is a normal line of text
* this is the first level of bullet points, made up of <space><space>*<space>
* this is more indented, composed of <space><space><space><space>*<space>
</nav>
的CSS
.table-of-contents ul {
list-style-type: none;
}
正如@AlexDupuy在评论中指出的那样,可以使用定义列表。
并非所有Markdown处理器都支持此功能,但广泛使用:Markdown指南-定义列表
Term 1
: definition 1
: definition 2
Term 2
: definition 1
: definition 2
呈现为(html):
<dl>
<dt>Term 1</dt>
<dd>definition 1</dd>
<dd>definition 2</dd>
<dt>Term 2</dt>
<dd>definition 1</dd>
<dd>definition 2</dd>
</dl>
通常,DT
会以类似于标题的格式DD
呈现,并且每个都以缩进文本的形式呈现在其下方。
如果您不希望使用标题/术语,只需使用不间断空格代替定义术语:
: This is the text that I want indented. All text on the same line as the preceding colon will be included in this definition.
: If you include a second definition you'll get a new line; potentially separated by a space. <br />Some inline HTML may be supported within this too, allowing you to create new lines without spaces.
: Support for other markdown syntax varies; e.g. we can add a bullet list, but each one's wrapped in a separate definition term, so the spacing may be out.
: - item 1
: - item 2
: - item 3
您可以通过将上述示例复制粘贴到此站点来查看实际操作:堆栈编辑Markdown编辑器
好的,在您的R代码中包含一些HTML,我执行了以下代码以在R Markdown中生成纯文本。该<h3 style="text-indent: 15em;">
缩进文本15位。对于原始问题,将15更改为6。
## Option: Du Pont Ratio Concept - (ROE Decomposition)
### (Closed Quotes/Total Premium) = (Closed Quotes/Quotes Issued) X <br>
<h3 style="text-indent: 15em;">
(Quotes Issued/Renewal Premium) X <br></h3>
<h3 style="text-indent: 15em;">
(Renewal Premium/Total Premium)</h3>
因此,结果代码给出了我想要的输出格式。我正在使用Markdown文档的标签,并希望将有效的()文本对齐。
为了完整性,更深的项目符号列表:
Nested deeper levels: ---- leave here an empty row * first level A item - no space in front the bullet character * second level Aa item - 1 space is enough * third level Aaa item - 5 spaces min * second level Ab item - 4 spaces possible too * first level B item
嵌套更深层次:
乙级第一项
Nested deeper levels:
...Skip a line and indent eight spaces. (as said in the editor-help, just on this page)
* first level A item - no space in front the bullet character
* second level Aa item - 1 space is enough
* third level Aaa item - 5 spaces min
* second level Ab item - 4 spaces possible too
* first level B item
And there
could be even more
such octets of spaces.
如果您正在使用要点,请尝试以下操作:
<ul>
<li>Coffee</li>
<li>Tea
<ul>
<li>Black tea</li>
<li>Green tea</li>
</ul>
</li>
<li>Milk</li>
</ul>
这是我在设置Markdown样式时使用的方法。
在gitlab.com上,单个en空间(U + 2002)和单个em空间(U + 2003)正常工作。
大概其他重复或未完全解释的空格字符组合也足够了。
用不间断空格开头的行的问题之一是,如果行足够长,可以换行,则当它溢出到第二行时,溢出行的第一个字符以硬左开始而不是在第一个字符下开始上面的线
如果您的系统允许您将HTML与Markdown混合使用,那么一种轻松而有趣的缩进方式如下所示:
<ul>
My indented text goes here, and it can be long and wrap if you like.
And you can have multiple lines if you want.
</ul>
语义上在HTML中是无稽之谈(UL节中没有任何LI项),但是我使用的所有浏览器只是很高兴地缩进了这些标签之间的含义。