docsify-to-pdf-converter
docsify-to-pdf-converter copied to clipboard
Using '/' in TOC file produces `EISDIR: illegal operation on a directory, read`
This error is due to NodeJS trying to read a directory instead of a file. It Happend to me when referencing a folder in a _sidebar.md like * [Home](/)
or * [Guide](guide/)
. A workaround is to specify the README.md, then it is working, ex :* [Guide](guide/README.md)
.
I'm curious about the output to PDF of this converter. I'm not sure where to ask these questions so I'll ask here. Let me know if there's a better place please.
From my tests (and code inspection) the converter doesn't create a TOC (Table of Contents) in the PDF from the sidebar. Is this something in the plans?
I have an idea how to implement it and might work on that shortly. Let me know if you have any ideas/suggestions.
https://github.com/meff34/docsify-to-pdf-converter/issues/4#issuecomment-492736254 solved my issue, thanks.
I'm curious about the output to PDF of this converter. I'm not sure where to ask these questions so I'll ask here. Let me know if there's a better place please.
From my tests (and code inspection) the converter doesn't create a TOC (Table of Contents) in the PDF from the sidebar. Is this something in the plans?
I have an idea how to implement it and might work on that shortly. Let me know if you have any ideas/suggestions.
Could I know your solution to the problem?