html - Why are markdown bullet points separated by an extra newline? -
There are rows in my Markdown page:
- [section 1] (# section 1) - [section 1] (# sub-section 1) - [section 2] (# subdivision 2) - [section 2] (# section 2) - [section 3] (# section 3) - [section 4] ( # Section 4) Expected output (assuming each bullet is hyperlink) : - Section 1
- Sub-section 1
- Subdivision 2
- Section 2
- Section 3
- Section 4
-
section 1
-
- Li>
-
section 3
-
section 4
I do not know why The Github / Jekyll server doesn \ t \ t make required output When I look at the source in the browser (Chrome), then let me know it (which no Expected) found: & lt; Ul & gt; & Lt; Li & gt; & Lt; P & gt; & Lt; A href = '# section1' & gt; Section 1 & lt; / A & gt; & Lt; / P & gt; & Lt; Ul & gt; & Lt; Li & gt; & Lt; A href = '# Subdivision 1' & gt; Subdivision 1 & lt; / A & gt; & Lt; / Li & gt; & Lt; Li & gt; & Lt; A href = '#search-section 2' & gt; Sub Section 2 & lt; / A & gt; & Lt; / Li & gt; & Lt; / Ul & gt; & Lt; / Li & gt; & Lt; Li & gt; & Lt; P & gt; & Lt; A href = '# section2' & gt; Section 2 & lt; / A & gt; & Lt; / P & gt; & Lt; / Li & gt; & Lt; Li & gt; & Lt; P & gt; & Lt; A href = '# section3' & gt; Section 3 & lt; / A & gt; & Lt; / P & gt; & Lt; / Li & gt; & Lt; Li & gt; & Lt; P & gt; & Lt; A href = '# section4' & gt; Section 4 & lt; / A & gt; & Lt; / P & gt; & Lt; / Li & gt; & Lt; / Ul & gt; Why me here & lt; P & gt; Seeing the tag? Is there anything wrong with generator or my markdown code? How should I fix this?
I have just run some tests and it looks like this is a marking processing engine that creates this issue. Has been doing.
- Empty rows have been added with the Marquo MarkTown engine.
- No additional lines are added with the Redcarpet MarkTown engine.
- No extra lines are added with the Crampdown Marqueton engine.
(rdiscount because it is not installed on Windows)
Comments
Post a Comment