package kkmarkdown
A safe markdown engine
Install
Dune Dependency
Authors
Maintainers
Sources
1.1.0.tar.gz
md5=a20517d95590d03ff5b7670323b8b0dd
sha512=97b3faa09e23ab88c5b4dcabe88f29e5c675b6bb4b0c9230ec105a70b01b37b54274cc0ab4a5eed84a754a99e3664e116a7aba6c9697e3669229985f1bf749be
doc/kkmarkdown.lib/Lib/BlockRuleList/UlStar/index.html
Module BlockRuleList.UlStar
Source
Unordered list
* a
* b
* c
A list element can have block-level elements by adding line spaces.
* line1
* line2
* line3
* line4
is translated to
<ul>
<li>
<p>line1</p>
<ul>
<li>line2</li>
<li>line3</li>
</ul>
</li>
<li>
<p>line4</p>
</li>
</ul>
However, without a line space, a list element CANNOT include another list.
* line1
* line2
* line3
is translated to
<ul>
<li>
<p>line1 <em> line2 </em> line3</p>
</li>
</ul>
rather than something like
<ul>
<li>
line1
<ul>
<li>line2</li>
<li>line3</li>
</ul>
</li>
</ul>
This is beacause, I am too lazy to think about such ambiguous corner cases. /o\
True if it should construct a block when no further input line is given
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>