katex pre-release tarball/zip missing katex topdir level
See original GitHub issueSince v0.10.0-rc, the released katex.tar.gz and katex.zip no longer include the single katex topdir level. Which means that users using the previous layout now have to provide the katex subdir for themselves when extracting. Is this intended?
I was not aware of this, therefore did the usual
cd assets
tar xzf path/to/katex.tar.gz
and then had to use careful cleanup operations like
tar tzf path/to/katex.tar.gz | while read f; do rm -f "$f"; done
rmdir contrib fonts
Before re-issuing the corrected commands
mkdir katex
tar xzf path/to/katex.tar.gz -C katex
In my experience, most open-source projects use a single top-level directory. So if this change has been accidental, I’d like to see it reverted. If not, I’d like a prominent note in the changes list on the release page.
Issue Analytics
- State:
- Created 5 years ago
- Comments:11 (11 by maintainers)
Top Results From Across the Web
Options - KaTeX
As a consequence, macros defined at the top level by \def and \newcommand are added to the macros argument and can be used...
Read more >Supported Functions - KaTeX
This is a list of TeX functions supported by KaTeX. It is sorted into logical groups. There is a similar Support Table, sorted...
Read more >Common Issues - KaTeX
KaTeX does not support the align environment because LaTeX doesn't support align in math mode. The aligned environment offers the same functionality but...
Read more >Support Table - KaTeX
This is a list of TeX functions, sorted alphabetically. This list includes functions that KaTeX supports and some that it doesn't support.
Read more >Font - KaTeX
Rebuild KaTeX by running yarn build from the top-level directory. Use the newly generated dist/katex.min.css file, and place the fonts where you indicated....
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

Resolved by #1665.
As to the effects:
assetsdirectory will have to clean up carefully and create an emptykatexsubdirectory before unpacking again.README.mdin there: It’s overwritten now. That’s bad.