In this chapter, we are going to build an Electron application that allows users to author markdown documents and generate electronic books as a result. You are going to learn how to use the Monaco Editor by Microsoft in your Electron applications and how to process text with Pandoc (https://pandoc.org/) by utilizing Docker containers.
Why do we need Pandoc as a Docker container rather than as a standalone installation? The typical installation of Pandoc utils is pretty huge, and the setup instructions depend on the type of platform you are using. Moreover, you may need to install various supplementary tools, as well as keep them up to date.
With Docker, you get an image of Pandoc that is universal across all platforms. Besides, the containers are isolated from your operating system. When you don't need Pandoc on your machine, you can...