Closed ccheraa closed 1 year ago
When you generate an epub, a head element inside alist element should be rendered as the list's header, however, it will be omitted
head
list
When you use this code to generate an epub:
<list> <head>head</head> <item>item 1</item> <item>item 2</item> <item>item 3</item> </list>
Actual result:
<ul class="tei-list2"> <li class="tei-item">item 1</li> <li class="tei-item">item 2</li> <li class="tei-item">item 3</li> </ul>
Expected result:
<ul class="tei-list2"> <li class="tei-head5">head</li> <li class="tei-item">item 1</li> <li class="tei-item">item 2</li> <li class="tei-item">item 3</li> </ul>
This is an ODD issue, not TEI Publisher as such. There's no guarantee that the teiSimplePrint odd covers all cases correctly and it's TEI consortium's responsibility, if anyone's.
When you generate an epub, a
head
element inside alist
element should be rendered as the list's header, however, it will be omittedWhen you use this code to generate an epub:
Actual result:
Expected result: