1 ;;; muse-groff.el --- publish groff -mom -mwww files
3 ;; Copyright (C) 2005 Free Software Foundation, Inc.
5 ;; Author: Andrew J. Korty (ajk AT iu DOT edu)
6 ;; Date: Tue 5-Jul-2005
8 ;; This file is part of Emacs Muse. It is not part of GNU Emacs.
10 ;; Emacs Muse is free software; you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published
12 ;; by the Free Software Foundation; either version 2, or (at your
13 ;; option) any later version.
15 ;; Emacs Muse is distributed in the hope that it will be useful, but
16 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 ;; General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with Emacs Muse; see the file COPYING. If not, write to the
22 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 ;; Boston, MA 02110-1301, USA.
31 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
33 ;; Muse Publishing Using groff -mom -mwww
35 ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
37 (require 'muse-publish
)
39 (defgroup muse-groff nil
40 "Rules for marking up a Muse file with groff -mom -mwww macros."
43 (defcustom muse-groff-extension
".groff"
44 "Default file extension for publishing groff -mom -mwww files."
48 (defcustom muse-groff-pdf-extension
".pdf"
49 "Default file extension for publishing groff -mom -mwww files to PDF."
53 (defcustom muse-groff-header
54 ".TITLE \"<lisp>(muse-publishing-directive \"title\")</lisp>\"
55 .SUBTITLE \"<lisp>(muse-publishing-directive \"date\")</lisp>\"
56 .AUTHOR \"<lisp>(muse-publishing-directive \"author\")</lisp>\"
64 <lisp>(and muse-publish-generate-contents \".TOC\n\")</lisp>\n"
65 "Header used for publishing groff -mom -mwww files."
66 :type
'(choice string file
)
69 (defcustom muse-groff-footer
" "
70 "Footer used for publishing groff -mom -mwww files."
71 :type
'(choice string file
)
74 (defcustom muse-groff-markup-regexps
75 `((10400 ,(concat "\\(\n</\\(blockquote\\|center\\)>\\)?\n"
78 "]*\n\\)+\\(<\\(blockquote\\|center\\)>\n\\)?")
79 0 muse-groff-markup-paragraph
))
80 "List of markup regexps for identifying regions in a Muse page.
81 For more on the structure of this list, see `muse-publish-markup-regexps'."
82 :type
'(repeat (choice
83 (list :tag
"Markup rule"
85 (choice regexp symbol
)
87 (choice string function symbol
))
91 (defcustom muse-groff-markup-functions
92 '((table . muse-groff-markup-table
))
93 "An alist of style types to custom functions for that kind of text.
94 For more on the structure of this list, see
95 `muse-publish-markup-functions'."
96 :type
'(alist :key-type symbol
:value-type function
)
99 (defcustom muse-groff-markup-tags
101 "A list of tag specifications, for specially marking up GROFF."
102 :type
'(repeat (list (string :tag
"Markup tag")
103 (boolean :tag
"Expect closing tag" :value t
)
104 (boolean :tag
"Parse attributes" :value nil
)
105 (boolean :tag
"Nestable" :value nil
)
109 (defcustom muse-groff-markup-strings
110 `((image-with-desc .
"\n.MPIMG -R %s.%s\n")
111 (image .
"\n.MPIMG -R %s.%s\n")
112 (image-link .
"\n.\\\" %s\n.MPIMG -R %s.%s")
113 (url .
"\n.URL %s %s\n\\z")
114 (link .
"\n.URL %s %s\n\\z")
115 (email-addr .
"\f[C]%s\f[]")
118 (no-break-space .
"\\h")
121 ;; (part . "\\part{")
123 ;; (chapter . "\\chapter{")
124 ;; (chapter-end . "}")
125 (section .
".HEAD \"")
127 (subsection .
".SUBHEAD \"")
128 (subsection-end .
"\"")
129 (subsubsection .
".PARAHEAD \"")
130 (subsubsection-end .
"\"")
131 ;; (footnote . "\\c\n.FOOTNOTE\n")
132 ;; (footnote-end . "\n.FOOTNOTE OFF\n")
133 ;; (footnotemark . "\\footnotemark[%d]")
134 ;; (footnotetext . "\\footnotetext[%d]{")
135 ;; (footnotetext-end . "}")
136 (begin-underline .
"\n.UNDERSCORE \"")
137 (end-underline .
"\"\n")
138 (begin-literal .
"\\fC")
139 (end-literal .
"\\fP")
140 (begin-emph .
"\\fI")
142 (begin-more-emph .
"\\fB")
143 (end-more-emph .
"\\fP")
144 (begin-most-emph .
"\\f(BI")
145 (end-most-emph .
"\\fP")
146 (begin-verse .
".QUOTE")
147 (end-verse .
".QUOTE OFF")
148 (begin-center .
"\n.CENTER\n")
149 (end-center .
"\n.QUAD L\n")
150 (begin-example .
,(concat
151 ".QUOTE_FONT CR\n.QUOTE_INDENT 1\n"".QUOTE_SIZE -2\n"
152 ".UNDERLINE_QUOTES OFF\n.QUOTE"))
153 (end-example .
".QUOTE OFF")
154 (begin-quote .
".BLOCKQUOTE")
155 (end-quote .
".BLOCKQUOTE OFF")
156 (begin-uli .
".list BULLET\n.SHIFT_LIST 2m\n.ITEM\n")
157 (end-uli .
"\n.LIST OFF")
158 (begin-oli .
".list DIGIT\n.SHIFT_LIST 2m\n.ITEM\n")
159 (end-oli .
"\n.LIST OFF")
161 (begin-dde .
"\\fP\n.IR 4P\n")
162 (end-ddt .
".IRX CLEAR"))
163 "Strings used for marking up text.
164 These cover the most basic kinds of markup, the handling of which
165 differs little between the various styles."
166 :type
'(alist :key-type symbol
:value-type string
)
169 (defcustom muse-groff-markup-specials
171 "A table of characters which must be represented specially."
172 :type
'(alist :key-type character
:value-type string
)
175 (defun muse-groff-markup-paragraph ()
176 (let ((end (copy-marker (match-end 0) t
)))
177 (goto-char (1+ (match-beginning 0)))
178 (delete-region (point) end
)
179 (unless (looking-at "\.\\(\\(\\(SUB\\|PARA\\)?HEAD \\)\\|RULE$\\)")
180 (muse-insert-markup ".ALD .5v\n.PP\n.ne 2\n"))))
182 (defun muse-groff-protect-leading-chars ()
183 "Protect leading periods and apostrophes from being interpreted as
185 (while (re-search-forward "^[.']" nil t
)
186 (replace-match "\\\\&\\&" t
)))
188 (defun muse-groff-concat-lists ()
192 (while (re-search-forward "^\.LIST[ \t]+\\(.*\\)\n" nil t
)
193 (setq arg
(match-string 1))
194 (if (string= arg
"OFF")
195 (setq begin
(match-beginning 0))
196 (if (and begin
(string= type arg
))
197 (delete-region begin
(match-end 0))
201 (defun muse-groff-fixup-dquotes ()
202 "Fixup double quotes."
204 (while (search-forward "\"" nil t
)
205 (unless (get-text-property (match-beginning 0) 'read-only
)
206 (if (and (bolp) (eq (char-before) ?
\n))
215 (defun muse-groff-prepare-buffer ()
216 (goto-char (point-min))
217 (muse-groff-protect-leading-chars))
219 (defun muse-groff-finalize-buffer ()
220 (goto-char (point-min))
221 (muse-groff-concat-lists))
223 (defun muse-groff-pdf-browse-file (file)
224 (shell-command (concat "open " file
)))
226 (defun muse-groff-pdf-generate (file output-path final-target
)
227 (muse-publish-transform-output
228 file output-path final-target
"PDF"
230 (lambda (file output-path
)
233 (concat "file=%s; ext=%s; cd %s && cp $file$ext $file.ref && "
234 "groff -mom -mwww -t $file$ext > $file.ps && "
236 (file-name-sans-extension file
)
238 (file-name-directory output-path
))))
239 (shell-command command
))))
242 (unless (assoc "groff" muse-publishing-styles
)
243 (muse-define-style "groff"
244 :suffix
'muse-groff-extension
245 :regexps
'muse-groff-markup-regexps
246 ;;; :functions 'muse-groff-markup-functions
247 :strings
'muse-groff-markup-strings
248 :tags
'muse-groff-markup-tags
249 :specials
'muse-groff-markup-specials
250 :before
'muse-groff-prepare-buffer
251 :after
'muse-groff-finalize-buffer
252 :header
'muse-groff-header
253 :footer
'muse-groff-footer
256 (muse-derive-style "groff-pdf" "groff"
257 :final
'muse-groff-pdf-generate
258 :browser
'muse-groff-pdf-browse-file
259 :osuffix
'muse-groff-pdf-extension
))
261 (provide 'muse-groff
)
263 ;;; muse-groff.el ends here
266 ;; indent-tabs-mode: nil