Hello,
I want to build a docx file from plain text format, i. e. regular text disregarding any Markdown formatting. Currently, the build file looks like this:
{
"selector": "text.html.markdown",
"working_dir": "$file_path",
"cmd": [
"pandoc",
"-f", "plain",
"-t", "docx",
"-o", "$file_base_name.docx",
"$file_name"
]
}
In the output, I am getting this error:
Unknown reader: plain
[Finished in 0.1s with exit code 1]
[cmd: ['pandoc', '-f', 'plain', '-t', 'docx', '-o', 'octagon105.docx', 'octagon105.md']]
[dir: /home/igor/Mega/Writing/2017-03 Octagon]
[path: /sbin:/bin:/usr/sbin:/usr/bin:/snap/bin]
Could someone help? Pandoc documentation says “plain” should be a recognized format.