Activating the Kate Build Plugin

In order to make this pandoc output automagical, we’ll need to activate the “Build” plug-in.

If this worked correctly for you, you should see an item at the bottom of the screen labeled “Build Output.” This is where we’ll tell Kate how to generate the output from the currently-edited file via the pandoc command.

Setting Up Your Build Profile

Like the name suggests, this feature is generally targeted at developers writing code, and will compile that code for them. But there is a “Quick Compile” option that does nothing but run a command you configure, and that’s where we’ll be putting the pandoc options we want. Click on the “Build Output” item at the very bottom of the Kate window, and you’ll see a dialog like the one below.

The first tab “Errors & Warnings” will display the result of your command if something goes wrong, and the second, “Output,” will display nothing if everything goes to plan. The last tab, “Target Settings,” is the one we’re interested in. Let’s create what Kate calls a “Build Target” for pandoc. First, click the “New” button (it’s the one to the far left with the green plus). This will create a Build Profile that we can give a name to in the field above the “New” button – let’s call this “MD > HTML”, to signify we want this to automatically generate an HTML version of our Markdown document. When you do so, Kate will fill in some of the setting to the right, including “Build” and “Clean.” These are items we don’t need to worry about for what we’re doing, so we can delete those “make” and “make clean” commands. Instead, put the following command in the “Quick comple” field: Here, the “%f” is a code that Kate will replace with the name of the file currently open in the window. Now, once you’ve completed your Markdown document, select the “Build” menu in the toolbar, then “Quick Compile.” Voila! Check the directory your Markdown document was in, and you’ll see a file titled [name of your original file].html. Note that the “%f” code includes the entire filename, so if your original was called “myfile.md,” the newly-generated one will be called “myfile.md.html” (because the original extension is included). Now, I like to assign this to a keyboard shortcut. You can do this in the “Settings -> Configure Shortcuts” dialog. Find the “Quick Compile” item, click on the “Shortcut” column for that row, select “Custom” when it opens, and click the “None” button. This will then change to say “Input” – the next keyboard combination you press will be assigned to this, so make sure you use a Control or Alt button. It may also warn you that another function is already assigned to that combination, but clearly this is more important, so you can override it. As shown in the figure below, I’ve assigned “Quick Compile” to Ctrl+B.

Now, whenever I want to take a look at the HTML that my Markdown will generate, all I need to do is hit Ctrl+B.