File: genhtml.sh

package info (click to toggle)
paredit-el 24-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 324 kB
  • ctags: 160
  • sloc: lisp: 3,475; sh: 13; makefile: 9
file content (11 lines) | stat: -rw-r--r-- 173 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -Ceu

: ${EMACS:=emacs}

exec ${EMACS} --batch --load paredit.el --eval '
(with-temp-buffer
  (paredit-insert-html-examples)
  (write-file "paredit.html"))
'