[Emacs] Add my package mdc-mode

That package is still hugely experimental and far from ready to be
used by anyone, myself included.
This commit is contained in:
Lucien Cartier-Tilet 2022-08-08 20:37:25 +02:00
parent 22b6991241
commit 0bdabaf5c0
Signed by: phundrak
GPG Key ID: BD7789E705CB8DCA
1 changed files with 13 additions and 0 deletions

View File

@ -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 Im 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