-t epub3 from markdown produces "invalid ids" as reported by calibre #9412
-
|
Greetings folks, These invalid ids are created from many headings i have in my documents. Calibre As asked, I am not filing an issue yet, but I think this here is worth one. From my Makefile: ebook.epub::
pandoc --metadata-file=metadata.yaml --toc --toc-depth=1 -t epub3 -i [0-9][0-9][0-9]*md -o $@See my screenshot: |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
|
As I understand it, these are not invalid IDs. epubcheck will not flag them as such. If this is a serious problem, though, we could consider adjusting our ids to be ASCII only. Comments welcome. |
Beta Was this translation helpful? Give feedback.

As I understand it, these are not invalid IDs. epubcheck will not flag them as such.
The epub spec calls for XML-serialized HTML5, and characters like
üare allowed in HTML5 identifiers. It may be that there are readers that have trouble with them, but that is different from claiming that they are "invalid."If this is a serious problem, though, we could consider adjusting our ids to be ASCII only. Comments welcome.