I tried using the command pandoc --version and I get an error cannot execute binary file Exec format error. am using Ubuntu 22.04. Haven't yet found any solution on the internet
@BrianSchellAuthor3 ай бұрын
My guess is that you've downloaded the wrong version, possible the one for Windows?
@neculaii.fantanaru3636 Жыл бұрын
ok, but if I have several .doc files from a folder and I want to convert all them (batch) into txt, what is the command for converting all at once ?
@BrianSchellAuthor Жыл бұрын
I do this all the time. Move into the directory with all the files and paste this as one long line: for i in *.docx ; do echo "$i" && pandoc -s --wrap=none $i -o $i.txt ; done
@BrianSchellAuthor Жыл бұрын
But change the .docx to .doc if that’s what you actually have
@neculaii.fantanaru3636 Жыл бұрын
@@BrianSchellAuthor My problem: where to put that line, because I cannot open Pandoc in that folder, like I use to do with CMD. ? Can you tell me how can I use that line, so as to change my files from the folder?
@cepi244 жыл бұрын
Thanks for video. Have you ever considered to use AsciiDoc instead of MarkDown?
@dansch32743 жыл бұрын
Latex to docx support seem to be very weak. Simple ewpage either skipped by tex reader or by docx writer. Reference-doc worked nicely but I miss simple things
@LemoUtan4 жыл бұрын
You can get a quick chunk of unicode maths on the command line, provided it can be written on one line. Type the pandoc command, expecting standard in, type some stuff, an end of file, and out it pops. Ideal for a quick cut'n'paste to a youtube comment. pandoc -f markdown -t plain $\mathbb{Z}_{12} \times \mathbb{Z}_6^2 \times \mathbb{Z}_4 \times \mathbb{Z}_2^2$ ℤ₁₂ × ℤ₆² × ℤ₄ × ℤ₂²
@taskentlutsow21102 жыл бұрын
Can it convert the Wordgrinder format?
@BrianSchellAuthor2 жыл бұрын
Not directly, no.
@keshavdk30804 жыл бұрын
Can i get any hint for converting html file to rtf ? Thank you.
@BrianSchellAuthor4 жыл бұрын
keshav dk I’ve tried that- Pandoc doesn’t support RTF in any way. I don’t understand what’s so complicated about the format, but - nope!
@keshavdk30804 жыл бұрын
Thank you @@BrianSchellAuthor for this information.