From 0bdabaf5c01df76821bad3c5710d3b008601abfe Mon Sep 17 00:00:00 2001 From: Lucien Cartier-Tilet Date: Mon, 8 Aug 2022 20:37:25 +0200 Subject: [PATCH] [Emacs] Add my package mdc-mode That package is still hugely experimental and far from ready to be used by anyone, myself included. --- org/config/emacs.org | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/org/config/emacs.org b/org/config/emacs.org index 6e095c4..a1d149b 100644 --- a/org/config/emacs.org +++ b/org/config/emacs.org @@ -6565,6 +6565,19 @@ org-mode and then export it with ~ox-gfm~. :after (org ox)) #+end_src +Nuxt has its own flavour of Markdown, called [[https://content.nuxtjs.org/guide/writing/mdc/][MDC]] (/MarkDown Components/) +which is a godsend to write content for Nuxt websites! However, no +~mdc-mode~ existed when I began working with it, so I’m working on one. +#+begin_src emacs-lisp +(use-package mdc-mode + :defer t + :after markdown-mode + :straight (mdc-mode :type git + :host github + :repo "Phundrak/mdc-mode" + :build t)) +#+end_src + Tables of content are always nice to have for large files, just like with the ~toc-org~ package for org-mode. #+begin_src emacs-lisp