<section class="level1" aria-labelledby="test">
<h1 id="test">TEST</h1>
<div>TextText</div>
</section>
vfm
vfm ### mdast ### +0ms
vfm root[1]
vfm └─0 section[3]
vfm │ data: {"hName":"section","hProperties":{"class":["level1"],"aria-labelledby":"test"}}
vfm │ depth: 1
vfm ├─0 heading[1]
vfm │ │ depth: 1
vfm │ │ data: {"hProperties":{"id":"test"},"id":"test"}
vfm │ └─0 text "TEST"
vfm ├─1 html "<div>\nText"
vfm └─2 html "</div>" +0ms
vfm
vfm ### hast ### +3ms
vfm root[1] (1:1-7:1, 0-27)
vfm │ data: {"quirksMode":false}
vfm └─0 element<section>[2]
vfm │ properties: {"className":["level1"],"ariaLabelledBy":["test"]}
vfm ├─0 element<h1>[1]
vfm │ │ properties: {"id":"test"}
vfm │ └─0 text "TEST"
vfm └─1 element<div>[1] (1:1-1:7, 0-6)
vfm │ properties: {}
vfm └─0 text "\nTextText" (1:6-1:1, 5-0) +1ms
vfm {} +2ms
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>TEST</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<section class="level1" aria-labelledby="test">
<h1 id="test">TEST</h1>
<div>TextText</div>
</section>
</body>
</html>
不具合が起きるMDの例:
TEST.md
VFMでのHTMLへの変換結果:
div要素内のテキストが "Text" のはずなのが "TextText" と二重に出力されている。
この不具合が起きる条件は以下:
Debug log
Run
vfmwithDEBUG=vfmto see detailed log.