In Markdown, how do I start a line with a number without creating a list?

Markdown

Markdown Problem Overview


I want to start a line with a number in Markdown without it creating a list.

1. so my next line

will be parallel to the first

    1. not indented  

like this

Markdown Solutions


Solution 1 - Markdown

From the Markdown Syntax Documentation:

>It’s worth noting that it’s possible to trigger an ordered list by accident, by writing something like this: > >1986. What a great season. > >In other words, a number-period-space sequence at the beginning of a line. To avoid this, you can backslash-escape the period: > >1986\. What a great season.

Solution 2 - Markdown

Use an invisible character:

⁣1.

I did this as my MD processor didn't support the 1\. escaping notation used in Ethan's answer here.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSaber CNView Question on Stackoverflow
Solution 1 - MarkdownEthan FurmanView Answer on Stackoverflow
Solution 2 - MarkdownmahemoffView Answer on Stackoverflow