aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/init-markdown.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/init-markdown.el')
-rw-r--r--lisp/init-markdown.el33
1 files changed, 0 insertions, 33 deletions
diff --git a/lisp/init-markdown.el b/lisp/init-markdown.el
deleted file mode 100644
index 0e86560..0000000
--- a/lisp/init-markdown.el
+++ /dev/null
@@ -1,33 +0,0 @@
-;;----------------------------------------------------------------------------
-;; Markdown mode
-;;----------------------------------------------------------------------------
-(use-package markdown-mode
- :mode (("\\.markdown\\'" . markdown-mode)
- ("\\.md\\'" . markdown-mode))
-
- :config
- ;;----------------------------------------------------------------------------
- ;; Generated HTML 5 and UTF-8 with Markdown
- ;;----------------------------------------------------------------------------
- (eval-after-load "markdown-mode"
- '(defalias 'markdown-add-xhtml-header-and-footer 'as/markdown-add-xhtml-header-and-footer))
-
- (defun as/markdown-add-xhtml-header-and-footer (title)
- "Wrap XHTML header and footer with given TITLE around current buffer."
- (goto-char (point-min))
- (insert "<!DOCTYPE html>\n"
- "<html>\n"
- "<head>\n<title>")
- (insert title)
- (insert "</title>\n")
- (insert "<meta charset=\"utf-8\" />\n")
- (when (> (length markdown-css-paths) 0)
- (insert (mapconcat 'markdown-stylesheet-link-string markdown-css-paths "\n")))
- (insert "\n</head>\n\n"
- "<body>\n\n")
- (goto-char (point-max))
- (insert "\n"
- "</body>\n"
- "</html>\n")))
-
-(provide 'init-markdown)