-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add further output options #42
Closed
Closed
Conversation
This file contains 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
Add Property to disable extension to allways open docuement after rendering
1. Add `pandoc.executable` option for pandoc executable 2. Add function `getPandocExecutablePath` that checks `pandoc.executable` option 3. Update `README.md` for new option
ChrisChinchilla
force-pushed
the
master
branch
from
October 7, 2020 23:24
8009660
to
d780dcb
Compare
ChrisChinchilla
force-pushed
the
master
branch
from
January 23, 2022 15:49
b312cad
to
500a329
Compare
* Add support for running pandoc in a container using the latest official pandoc/latex container https://hub.docker.com/r/pandoc/latex. This includes a new configuration property, pandoc.useDocker, which defaults to false so that the original behavior is preserved. * version bump
* Add docker.options support When using this extension with a linux docker image, the file permissions are not always correct. So there is a need to specify the docker options to set the user-id and group-id. This change adds the following configuration options: * `pandoc.docker.enabled`: Replaces the existing `pandoc.useDocker`. Any existing configurations using the old value will be migrated over and the old value is deprecated. Warning will be shown when migrating. * `pandoc.docker.options`: Set this to provide options to the `docker run` command. As an example you can use `--user $(id -u):$(id -g)` to set the correct user-id and group-id. * `pandoc.docker.image`: Can be used to override the default docker image to a specified value. * vscode added this setting incorrectly. reverting change * Fix TS errors * Update to check for each config location --------- Co-authored-by: Chris Chinchilla <chris@chrischinchilla.com>
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.
Hey @dfinke as mentioned in #41 , I've added a few new output options to the extension. I basically just copied what you had so far, I will likely make some more changes over time, and add a little more polish to the output options. I'd also like to add the ability to export from something else to markdown, but that needs a bit more work.
My code editor (VSC of course) formatted some code too, let me know if you'd rather I removed those changes.