Search code examples
htmlmarkdownpandoc

Multiple markdown files to a single HTML


I have to convert multiple .md files into a single HTML file.

Is it possible? Pandoc can convert .md to HTMLbut not sure if it can do it for multiple files.

Or would I need to write a program to manipulate the tool?


Solution

  • pandoc *.md -o result.html
    

    Try this