Skip to content
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

Feature request: track changes for DOCX, but output to Markdown #46

Open
pvstodghill opened this issue Jan 19, 2024 · 0 comments
Open

Comments

@pvstodghill
Copy link

I would like a Markdown output file with Pandoc-style track changes markup instead of CriticMarkup. There doesn't appear to be a combination of command line options that gives this result. This is what I end up doing instead,

T=$(mktemp)
pandiff old.md new.md -t docx -o ${T}
pandoc -f docx - markdown+mark --track-changes=all ${T}

The reason is that my workflow does some transformations on the markdown before running it through Pandoc to generate DOCX files:

pandiff old.md new.md -t docx_but_markdown | frob-the-markdown | pandoc -t docx -o output.docx

@pvstodghill pvstodghill changed the title Feature request: track changes for DOCS, but output to Markdown Feature request: track changes for DOCX, but output to Markdown Jan 19, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant