在Markdown中,如何在不创建列表的情况下使用数字开始一行?

Sab*_* CN 29 markdown

我想在Markdown中用一个数字开始一行而不创建一个列表.

1. so my next line

will be parallel to the first

    1. not indented  

like this
Run Code Online (Sandbox Code Playgroud)

Eth*_*man 49

Markdown语法文档:

值得注意的是,可以通过写下这样的内容来偶然触发有序列表:

1986.多么棒的一个赛季.

换句话说,在行的开头的数字 - 时间 - 空间序列.为避免这种情况,您可以反斜杠 - 逃避期间:

1986年\.多么美好的一个季节.

  • 奇怪的语法.为什么我们不能简单地逃避这个数字(`\ 1986.)?这对我来说是直观的,看到完整的'1986`作为命令,而不是单一的`. (2认同)

mah*_*off 6

使用隐形字符:

⁣1.
Run Code Online (Sandbox Code Playgroud)

我这样做是因为我的 MD 处理器不支持在1\.这里 Ethan 的回答中使用的转义符号。