-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathmarkdown-preview-eww.el
74 lines (57 loc) · 2.83 KB
/
markdown-preview-eww.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
;;; markdown-preview-eww.el --- Realtime preview by eww -*- lexical-binding: t; -*-
;; Copyright (c) 2014, 2015, 2016 niku
;; Author: niku <[email protected]>
;; URL: https://github.com/niku/markdown-preview-eww
;; Version: 0.0.1
;; Package-Requires: ((emacs "24.4"))
;; This file is not part of GNU Emacs.
;; The MIT License (MIT)
;; Permission is hereby granted, free of charge, to any person obtaining a copy of
;; this software and associated documentation files (the "Software"), to deal in
;; the Software without restriction, including without limitation the rights to
;; use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
;; the Software, and to permit persons to whom the Software is furnished to do so,
;; subject to the following conditions:
;;
;; The above copyright notice and this permission notice shall be included in all
;; copies or substantial portions of the Software.
;;
;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
;; FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
;; COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
;; IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
;; CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
;;; Commentary:
;; This package provides the realtime markdown preview by eww.
;;; Code:
(defvar markdown-preview-eww-process-name "convert-from-md-to-html"
"Process name of a converter.")
(defvar markdown-preview-eww-output-file-name "markdown-preview-eww-result.html"
"Filename of converted html.")
(defvar markdown-preview-eww-waiting-idling-second 1
"Seconds of convert waiting")
(defun markdown-preview-eww-convert-command (output-file-name)
(format "require \"redcarpet\"
markdown = Redcarpet::Markdown.new(Redcarpet::Render::HTML)
while doc = gets(\"\\0\")
doc.chomp!(\"\\0\")
File.write(\"%s\", markdown.render(doc))
end
" output-file-name))
(defun markdown-preview-eww--do-convert ()
(let ((doc (buffer-substring-no-properties (point-min) (point-max)))
(cb (current-buffer)))
(process-send-string markdown-preview-eww-process-name (concat doc "\0"))
(eww-open-file markdown-preview-eww-output-file-name)
(switch-to-buffer cb)))
;;;### autoload
(defun markdown-preview-eww ()
"Start a realtime markdown preview."
(interactive)
(let ((process-connection-type nil)
(convert-command (markdown-preview-eww-convert-command markdown-preview-eww-output-file-name)))
(start-process markdown-preview-eww-process-name nil "ruby" "-e" convert-command)
(run-with-idle-timer markdown-preview-eww-waiting-idling-second nil 'markdown-preview-eww--do-convert)))
(provide 'markdown-preview-eww)
;;; markdown-preview-eww.el ends here