M. Willis Monroe

Results 6 comments of M. Willis Monroe

I've realized that the commands should be: ``` ENV NODE_ENV production RUN cd frontend; yarn build ``` But the index file generated still has local links: ``` Please enable JavaScript...

@ol97 This script (python3) will fix the directory structure: ``` import os from pathlib import Path for file in os.listdir(): if file.startswith('EVEMon'): dirs = file.split('\\')[:-1] file_name = file.split('\\')[-1] Path('/'.join(dirs)).mkdir(parents=True, exist_ok=True)...

I just ran into this issue when trying to create a new local file using my BibTex bibliography file which I store in one place in my folder tree. I...

I just tried adding `"typst-lsp.rootPath": "/",` to my settings.json and it seems not to respect the change.

I just came across this as well. Any entries added to the .bib file while the typst file is open in VSCode cannot be cited in the typst file, in...

Ah, now that I think about it, it might be more complicated. My .bib file is auto-exported from Zotero. However, I import my bibliography using a local package. Which means...