this.textPane.setBorder(null);
this.textPane.setEditable(false);
this.textPane.setContentType("text/html");
this.textPane.setDoubleBuffered(true);
SwingUtils.setPopupMenu(this.textPane,
new JTextPanePopupMenu(this.textPane));
final HTMLDocument document = (HTMLDocument) this.textPane.getDocument();
// Set the base URL of the text pane
document.setBase(Main.class.getResource("templates/"));