**[[https://pandoc.org|Pandoc]]** is a tool to convert one file format to another like markdown, html, docx, rtf, txt, epub, LaTeX, PDF and many others. [[https://pandoc.org/installing.html|Installing Pandoc]] Pandoc is a command-line tool, not a graphic user interface. But there is also the graphic user interface, the [[https://panwriter.com|Pan Writer]] tool, where you can write and see how it looks like in real life (more or less) and most importantly you can convert files via the interface without using the command-line. You need to install Pandoc nevertheless. **Building a blog-like website with pandoc**: Using pandoc to create a website might not be the best way, however it can be an easy start, a very DIY ✂️ way of making a website, which you can always edit later on. This guide will show you how to make a start. **1)** You can create a doc file with your usual text editor program, Libre Office for example. You can insert tables to make your menu or buttons, or you can fill the page entirely with tables. Save it as .docx locally in your computer. **2)** Converting the .docx file via command line: pandoc --extract-media=. -s file_name.docx -t markdown -o file_name.md extract media enables to extract the images and makes a folder for them. -s is the usual Pandoc template that is being used in the markdown format. **3a)** Converting the markdown file into html is possible via the command-line and also via the PanWriter. Via the command line: pandoc file_name.md -f markdown -t html -s -o file_name.html Or you can export the markdown file to html via PanWriter. An example of a html file converted from a .docx file: {{: pandoc_converted_example.png?700|}} You can build your site even entirely out of tables and style them in your html file, here some [[https://www.w3schools.com/html/html_tables.asp|intro to building tables]]. [[https://www.youtube.com/watch?v=e62D-aayveY&list=PLP9IO4UYNF0VdAajP_5pYG-jG2JRrG72s|HTML - Tables]] You can also [[https://smallsharpsoftwaretools.com/tutorials/create-html-from-multiple-markdown-files/|create a html file out of multiple markdown files]]. **3b)** Once you have a markdown file, you can convert the markdown file using a custom css file, that you can create yourself. For this, you can use this command: pandoc file_name.md -f markdown --css style.css -t html -s -o file_name.html Download an example css file to try it out: