Skip to main content
added 703 characters in body
Source Link
Glorfindel Mod
  • 270.1k
  • 62
  • 675
  • 1.4k

When combining lists with quotes (or spoilers), something strange happens. The following Markdown:

1. > This is the first quote. 2. > This is the second quote. 

produces

1.

This is the first quote.

This is the second quote.

so it seems that server-side, the first list item isn't recognized. The previewer doesn't have this problem, as you can also verify by editing this post:

enter image description here


Another example, trying to make quotes part of the list:

1. > This is the first quote. 2. > This is the second quote. 
  1. This is the first quote.

  2. This is the second quote.

The preview and end result are the same, but I'm not sure it's semantically correct.


It does seem to work when you add additional content to the list items:

1. A quote follows: > This is the first quote. 2. A quote follows: > This is the second quote. 
  1. A quote follows:

    This is the first quote.

  2. A quote follows:

    This is the second quote.

When combining lists with quotes (or spoilers), something strange happens. The following Markdown:

1. > This is the first quote. 2. > This is the second quote. 

produces

1.

This is the first quote.

This is the second quote.

so it seems that server-side, the first list item isn't recognized. The previewer doesn't have this problem, as you can also verify by editing this post:

enter image description here

When combining lists with quotes (or spoilers), something strange happens. The following Markdown:

1. > This is the first quote. 2. > This is the second quote. 

produces

1.

This is the first quote.

This is the second quote.

so it seems that server-side, the first list item isn't recognized. The previewer doesn't have this problem, as you can also verify by editing this post:

enter image description here


Another example, trying to make quotes part of the list:

1. > This is the first quote. 2. > This is the second quote. 
  1. This is the first quote.

  2. This is the second quote.

The preview and end result are the same, but I'm not sure it's semantically correct.


It does seem to work when you add additional content to the list items:

1. A quote follows: > This is the first quote. 2. A quote follows: > This is the second quote. 
  1. A quote follows:

    This is the first quote.

  2. A quote follows:

    This is the second quote.

Source Link
Glorfindel Mod
  • 270.1k
  • 62
  • 675
  • 1.4k

Combining lists with quotes leads to the first list item not being recognized

When combining lists with quotes (or spoilers), something strange happens. The following Markdown:

1. > This is the first quote. 2. > This is the second quote. 

produces

1.

This is the first quote.

This is the second quote.

so it seems that server-side, the first list item isn't recognized. The previewer doesn't have this problem, as you can also verify by editing this post:

enter image description here