1

Issue

I noticed on GitHub that links do not display correctly when they are inserted into a list as seen below.

I created a bug for this also on GitHub a week ago but have not heard back yet.

Working image using markdown

**Here is a link:**
[Link](https://github.com/)

Image in a list

**Here is a link in a list:**
<ol>
  <li>Text [Link](https://github.com/) text</li>
  <li>Text</li>
</ol>

Screenshot of the issue

enter image description here

Pie
  • 856
  • 4
  • 12
  • 33
  • related https://stackoverflow.com/questions/29368902/how-can-i-wrap-my-markdown-in-an-html-div – diedu Oct 05 '20 at 02:07

1 Answers1

1

Is there a reason for not using only markdown, because this works

**Here is a link in a list:**

1. Text [Link](https://github.com/) text
2. Text

I think you cannot mix markdown inside html

diedu
  • 19,277
  • 4
  • 32
  • 49