Conversation
d9e5b50 to
0f32231
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #153 +/- ##
==========================================
- Coverage 70.20% 69.97% -0.23%
==========================================
Files 34 34
Lines 1537 1562 +25
==========================================
+ Hits 1079 1093 +14
- Misses 396 407 +11
Partials 62 62 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
0f32231 to
3c8d02f
Compare
3c8d02f to
998ab89
Compare
d11b2c0 to
5bdbbbb
Compare
This allows or prohibits shell command execution from within TeX files.
The use case here is to allow users to download images from within the
build process, e.g. compiling something like this with `lualatex`:
\documentclass{article}
\usepackage{luacode}
\usepackage{graphicx}
\begin{document}
\begin{luacode*}
os.execute("curl -o apod.jpg https://apod.nasa.gov/apod/")
\end{luacode*}
\includegraphics{apod.jpeg}
\end{document}
To this end, I've included `curl` into the base image.
Fixes: #152
5bdbbbb to
cfb6180
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This allows or prohibits shell command execution from within TeX files.
Verify whether
latexmk -showextraoptionsmentions direct support for passing either flag.latexmk(1) does not, but has examples passing it via the
-pdf{lua,xe,}latex="COMMAND"options. This would complicate the construction of the latexmk command.Fixes: #152