Learning how to use the POSIX Shell using Terminal is the single greatest thing I did when I switched from Windows to Mac many moons ago! macOS foundations are *nix, even with all the lovely icing on top! You really don’t need to learn Ruby (although it is a beautiful language), as pandocomatic is a command-line tool and never exposes and ruby for its users. BUT learning how to use the shell even minimally (terminal.app) and understand what markdown and YAML look like is probably much more useful! But even then it isn’t necessary, as long as you know enough to move a file from A to B. If I was sat next you you I could probably fix what you are doing in a minute and you would be like “duh”! It is hard to see the woods from the trees sometimes, especially if you’ve only ever lived in a desert!
My instruction were to break the problem down into smaller chunks and try only the pandocomatic on a simple test markdown file. Even simpler is to run pandoc directly on the command-line.
Sorry this was my fault!!! I naively assumed you had some terminal experience as you knew something about XML and would understand what the commands look like that you should enter in the terminal. That command runs pandoc to save the defaults ICML template it uses. So open terminal.app and run this in the command line: cd ~/Desktop; pandoc -D icml > custom.icml — it should create the icml on the desktop and you can move it to your templates directory. You can see the one I generated here (I uploaded it to Github after answering your question):
This is the contents of a simple markdown file, copy that text into a blank text document and save it as test.md. This is the file you pass to pandocomatic. The bit at the top is what tells pandocomatic which template or recipe to use. It is worth looking at the markdown scrivener produces as it will also be helpful for you to see the intermediate from
[quote=“TStone”]
The rest of the description is unfortunately way over my head. Should the following be entered in the Scrivener Processing field?[\quote]
No. This was the command pandocomatic --debug test.md to enter into terminal and the output you should see.
What I was trying to do was to help you by first ignoring Scrivener / scrivomatic, and simplifying the problem to the simplest procedure. That procedure is to edit your pandocomatic.yaml to make the icml-test template, then create the test.md markdown test file, then open up terminal cd to the same directory the test.md file is stored, and run pandocomatic directly on the test.md file you created. A test.icml file should be created in the same folder.
Overall it does sound as if this workflow is close to the limit of your current abilities. I would suggest dropping scrivomatic/pandocomatic and just trying to get pandoc to run, first try manually in the terminal, if that works then translate it into Scrivener. Small steps can climb mountains!