Reputation: 1175
I have a folder with several markdown files and I need to convert them to HTML at once.
This works fine:
multimarkdown -b file1.txt file2.txt file3.txt
But this doesn't:
multimarkdown -b *.txt
I get the error in the cmd window:
*.txt: Invalid argument
I also tried multimarkdown -b "*.txt"
and multimarkdown "*.txt" -b
, but still doesn't work.
Maybe I miss something? (I use MultiMarkdown 5.4.0)
Upvotes: 0
Views: 269