From ee786b481d0d6f2d1474803216a158928c8dd265 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Micha=C3=ABl=20Hauspie?= <michael.hauspie@univ-lille.fr>
Date: Thu, 3 Nov 2022 12:01:49 +0100
Subject: [PATCH] Add pandoc export for markdown

---
 configuration.org | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/configuration.org b/configuration.org
index a0d17e6..8c4b576 100644
--- a/configuration.org
+++ b/configuration.org
@@ -600,6 +600,9 @@ using bootstrap template.
 
 ;; bootstrap html
 (use-package ox-twbs)
+
+;; Export using pandoc
+(use-package ox-pandoc)
 #+end_src
 
 #+RESULTS:
@@ -698,6 +701,15 @@ Set line count limit before using =begin_example= blocs in code evaluation resul
 #+RESULTS:
 : 10
 
+* Markdown mode
+
+I use pandoc to generate html output from markdown file. In order to
+export a standalone file with the correct options, I set pandoc call here
+
+#+begin_src emacs-lisp
+(setq markdown-command "pandoc --standalone --mathjax")
+#+end_src
+
 * Completion setup
 
 I use [[http://company-mode.github.io/][company]] mode for completion. It provides a visual completion
@@ -925,6 +937,7 @@ For dockerfiles and docker-compose files, install some docker packages
 (use-package dockerfile-mode)
 (use-package docker-compose-mode)
 (use-package docker)
+(use-package docker-tramp)
 (use-package docker-api)
 (use-package docker-cli)
 #+end_src
-- 
GitLab