You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using VSCode pandoc extensions to create a pandoc preview, the html output is added to the same folder as the source .md (usually Input folder), but the png version of the argmap is not, leading to a missing image.
It's not known where the png is created. The relevant code is probably CodeBlock call to argmap2image function.
- Use more variables to reduce duplicate paths etc:
- `launch.json`
- `settings.json`
- Add `config_argmap.lua` to ensure LUA_PATH etc available to extensions
- Update scripts:
- Including symbolic link in `install.sh` to ensure `config_argmap.lua` available in `~/.local/share`.
- Fix missing image issue: relates to #20:
- Update bash aliases to move image file for `tests.sh`
- Add Input/12ff...png to repo for VSCode extension html output tests.
- Update `install.sh`:
- Comment out redundant ln -s due to extensions with custom paths.
- Fix symbolic link error.
- Tidy up code comments.
When using VSCode pandoc extensions to create a pandoc preview, the html output is added to the same folder as the source .md (usually Input folder), but the png version of the argmap is not, leading to a missing image.
It's not known where the png is created. The relevant code is probably CodeBlock call to argmap2image function.
Think it's this line: os.execute("lualatex -output-directory " .. tmpdir .. " " .. tmp .. ".tex")
The text was updated successfully, but these errors were encountered: