forked from DamienCassou/pillar-mode
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pillar-latex2pillar.el
405 lines (365 loc) · 12.5 KB
/
pillar-latex2pillar.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
;;; pillar-latex2pillar.el --- Help converting LaTeX files to Pillar -*- lexical-binding: t; -*-
;; Copyright (C) 2014 Damien Cassou
;; Author: Damien Cassou <[email protected]>
;; Version: 0.1
;; Keywords: markup major-mode latex
;; URL: http://github.com/DamienCassou/pillar-mode
;;
;; This file is not part of GNU Emacs.
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Utility functions to convert LaTeX files to Pillar ones
;;; Code:
(defun p2l--setup-buffer ()
"Prepare the buffer for conversion."
(goto-char (point-min))
(fundamental-mode)
(font-lock-mode -1))
(defun p2l-remove-latex-comments ()
"Remove all lines that start with %."
(interactive)
(p2l--setup-buffer)
(delete-matching-lines "^%.*$"))
(defun p2l-remove-header ()
"Remove everything before \chapter{...}."
(interactive)
(p2l--setup-buffer)
(let ((start (point)))
(when (search-forward "\\chapter{" nil t)
(beginning-of-line)
(delete-region start (point)))))
(defun p2l-remove-footer ()
"Remove the useless end of the file."
(interactive)
(goto-char (point-max))
(let ((end (point)))
(when (search-backward "\\ifx\\wholebook\\relax" nil t)
(beginning-of-line)
(delete-region (point) end))))
(defun p2l--convert-command-once (latex num pillar &optional newline)
"Convert next LATEX NUM argument command to PILLAR regexp.
NUM is the arity of the LATEX command. If NEWLINE is t, make
sure PILLAR starts its own line."
(when
(re-search-forward
(concat "\\\\"
latex
(apply 'concat (make-list num "{\\([^}]*\\)}"))
;; make sure we match exactly the desired command, not
;; one with a correct prefix. A better solution would
;; be to just use \> but that would require creating a
;; syntax table with `modify-syntax-entry'.
"\\([^[:alnum:]]\\|$\\)") nil t)
(let* ((last-subexpr (1+ num))
(begin-match (match-beginning 0))
(undesired-match (- (match-end last-subexpr)
(match-beginning last-subexpr))))
(replace-match (format "%s\\%s" pillar last-subexpr))
(backward-char undesired-match)
(when (looking-at "{}")
(replace-match ""))
(goto-char begin-match)
(when (and newline (not (zerop (current-column))))
(open-line 1)))
t))
(defun p2l--convert-command (latex num pillar &optional newline)
"Convert LATEX NUM argument commands to PILLAR regex.
NUM is the arity of the LATEX command. If NEWLINE is t, make
sure PILLAR starts its own line."
(p2l--setup-buffer)
(while (p2l--convert-command-once latex num pillar newline)))
(defun p2l--convert-regex (latex pillar &optional newline)
"Convert LATEX regex to PILLAR regex.
If NEWLINE is t, make sure PILLAR starts its own line."
(p2l--setup-buffer)
(while (re-search-forward latex nil t)
(replace-match pillar)))
(defconst p2l--command-conversion-table
'(("ie" 0 "''i.e.'',")
("eg" 0 "''e.g.'',")
("etc" 0 "etc.")
("noindent" 0 "")
("pharo" 0 "Pharo")
("st" 0 "Smalltalk")
("super" 0 "==super==")
("self" 0 "==self==")
("nil" 0 "==nil==")
("click" 0 "click")
("actclick" 0 "action-click")
("metaclick" 0 "meta-click")
("Click" 0 "Click")
("Actclick" 0 "Action-click")
("Metaclick" 0 "Meta-click")
("dc" 1 "")
("mbox" 1 "\\1")
("url" 1 "*\\1*")
("needspace" 1 "")
("chapter" 1 "!\\1\n" t)
("section" 1 "!!\\1\n" t)
("subsection" 1 "!!!\\1\n" t)
("subsubsection" 1 "!!!!\\1\n" t)
("paragraph" 1 "!!!!!\\1\n" t)
("important" 1 "@@important \\1" t)
("chalabel" 1 "@cha:\\1\n" t)
("seclabel" 1 "@sec:\\1\n" t)
("ref" 1 "*\\1*")
("figref" 1 "Figure *fig:\\1*")
("mthref" 1 "method *mth:\\1*")
("mthsref" 1 "methods *mth:\\1*")
("Mthref" 1 "Method *mth:\\1*")
("tmthref" 1 "the method *mth:\\1*")
("Tmthref" 1 "The method *mth:\\1*")
("charef" 1 "Chapter *cha:\\1*")
("secref" 1 "Section *sec:\\1*")
("figref" 1 "Figure *fig:\\1*")
("Figref" 1 "Figure *fig:\\1*")
("appref" 1 "Appendix *app:\\1*")
("tabref" 1 "Table *tab:\\1*")
("faqref" 1 "FAQ *faq:\\1*")
("button" 1 "==\\1==")
("ct" 1 "==\\1==")
("lct" 1 "==\\1==")
("menu" 1 "==\\1==")
("short" 1 "==\\1==")
("emph" 1 "''\\1''")
("underline" 1 "__\\1__")
("textbf" 1 "\"\"\\1\"\"")
("texttt" 1 "==\\1==")
("link" 1 "__\\1__")
("go" 0 "▹")
("apl" 1 "")
("ab" 1 "")
("sd" 1 "")
("dc" 1 "")
("md" 1 "")
("on" 1 "")
("damien" 1 "")
("lr" 1 "")
("orla" 1 "")
("alex" 1 "")
("alx" 1 "")
("dr" 1 "")
("ja" 1 "")
("jr" 1 "")
("jb" 1 "")
("fp" 1 "")
("michael" 1 "")
("ew" 1 "")
("mb" 1 "")
("hw" 1 "")
("ben" 1 "")
("hjo" 1 "")
("ml" 1 "")
("needlines" 1 "")
("clsind" 1 "==\\1==")
("ind" 1 "\\1")
("mthind" 2 "==\\2==")
("emphsubind" 2 "''\\2''")
("toolsflap" 0 "''Tools'' flap")
("toolsflapind" 0 "''Tools'' flap")
("scat" 1 "==\\1==")
("pkg" 1 "==\\1==")
("prot" 1 "==\\1==")
("cite" 1 "")
;; All these commands populate the index and display (part of)
;; their arguments
("ind" 1 "\\1")
("subind" 2 "\\2")
("emphind" 1 "''\\1''")
("emphsubind" 2 "''\\2''")
("scatind" 1 "==\\1==")
("pkgind" 1 "==\\1==")
("protind" 1 "==\\1==")
("clsind" 1 "==\\1==")
("clsindplural" 1 "==\\1==s")
("cvind" 1 "==\\1==")
("glbind" 1 "==\\1==")
("patind" 1 "==\\1==")
("pvind" 1 "==\\1==")
("clsmthind" 2 "==\\1>>\\2==")
("mthind" 2 "==\\2==")
("lmthind" 2 "==\\2==")
("cmind" 2 "==\\1>>\\2==")
("lcmind" 2 "==\\1>>\\2==")
("indmain" 1 "\\1")
("emphsubindmain" 2 "''\\2''")
("subindmain" 2 "\\2")
("clsindmain" 1 "==\\1==")
;; All these commands only populate the index and can be discarded
("index" 1 "")
("clsindex" 1 "")
("mthindex" 2 "")
("cmindex" 2 "")
("cvindex" 1 "")
("glbindex" 1 "")
("pvindex" 1 "")
("seeindex" 2 "")
("scatindex" 1 "")
("pkgindex" 1 "")
("protindex" 1 "")
("clsindexmain" 1 "")
("indexmain" 1 "")
("clsindexmain" 1 "")
("footnote" 1 "(\\1)")
("dothis" 1 "@@todo \\1")
))
(defconst p2l--regex-conversion-table
'(("---" "—")
;; ("--" "–") don't convert en-dash because it is used by scripts
;; to indicate return values (-->)
("\\\\," " ")
("\\\\ct!\\([^!]*\\)!" "==\\1==")
("\\\\#" "#")
))
(defun p2l--interpret-command-conversion-table ()
"Convert all LaTeX commands."
(dolist (conversion p2l--command-conversion-table)
(apply #'p2l--convert-command conversion)))
(defun p2l--interpret-regex-conversion-table ()
"Convert all LaTeX regular expressions."
(dolist (conversion p2l--regex-conversion-table)
(apply #'p2l--convert-regex conversion)))
(defun p2l--delete-all-spaces ()
"Remove all spaces around point.
Does *not* delete newline characters."
(just-one-space 0))
(defun p2l-convert-list-once ()
"Convert the next list (e.g, itemize or description)."
(let (before-begin after-end matched-env description-p)
(when (re-search-forward "^ *\\\\begin{\\(itemize\\|enumerate\\|description\\)}" nil t)
(setq before-begin (match-beginning 0))
(setq matched-env (match-string 1))
(re-search-forward (concat "^ *\\\\end{" matched-env "}"))
(setq after-end (match-end 0))
(setq description-p (string= matched-env "description"))
(save-excursion
(save-restriction
(narrow-to-region before-begin after-end)
(goto-char (point-min))
(kill-line)
(delete-blank-lines)
(goto-char (point-max))
(beginning-of-line)
(kill-line)
(delete-blank-lines)
(goto-char (point-min))
(let ((fill-paragraph-function nil)
(fill-column 1000000000))
(while (re-search-forward "^[ \t]*\n" nil t)
(replace-match ""))
(fill-paragraph))
(goto-char (point-min))
(while (re-search-forward "\\\\item" nil t)
(replace-match (if description-p ";" "-"))
(p2l--delete-all-spaces)
(backward-char)
(looking-back "[[:space:]\n\t]*" nil t)
(delete-region (match-beginning 0) (match-end 0))
(open-line 1)
(when description-p
(forward-char 2)
(delete-forward-char 1) ;; [
(p2l--delete-all-spaces)
(re-search-forward "]")
(delete-char -1) ;; ]
(p2l--delete-all-spaces)
(newline 1)
(insert ":")))
(goto-char (point-min))
(delete-blank-lines)))
t)))
(defun p2l-convert-list ()
"Convert all lists (e.g, itemize or description)."
(p2l--setup-buffer)
(while (p2l-convert-list-once)))
(defun p2l-convert-figure-once ()
"Convert the next figure."
(let (before-begin after-end file caption label)
(when (re-search-forward "^ *\\\\begin{figure}" nil t)
(setq before-begin (match-beginning 0))
(re-search-forward (concat "^ *\\\\end{figure}"))
(setq after-end (match-end 0))
(save-excursion
(save-restriction
(narrow-to-region before-begin after-end)
(goto-char (point-min))
(delete-region (point) (point-at-eol))
(delete-blank-lines)
(goto-char (point-max))
(beginning-of-line)
(delete-region (point) (point-at-eol))
(delete-blank-lines)
(goto-char (point-min))
(when
(re-search-forward "\\\\includegraphics\\[[^]]*\\]{\\([^}]*\\)}" nil t)
(setq file (match-string 1))
(goto-char (point-min))
(when (re-search-forward "\\\\caption{\\([^}]*\\)}" nil t)
(setq caption (replace-regexp-in-string "\\\\figlabel{[^}]*}?" "" (match-string 1)))
(goto-char (point-min))
(when (re-search-forward "\\\\figlabel{\\([^}]*\\)}" nil t)
(setq label (match-string 1))
(delete-region (point-min) (point-max))
(insert (format "+%s>file://figures/%s.png|label=fig:%s+"
caption file label))
t))))))))
(defun p2l-convert-figure ()
"Convert all figures."
(p2l--setup-buffer)
(while (p2l-convert-figure-once)))
(defun p2l-convert-code-once ()
"Convert the next code block."
(let (before-begin after-end)
(when (re-search-forward "^ *\\\\begin{code}" nil t)
(setq before-begin (match-beginning 0))
(re-search-forward (concat "^ *\\\\end{code}"))
(setq after-end (match-end 0))
(save-excursion
(save-restriction
(narrow-to-region before-begin after-end)
(goto-char (point-min))
(kill-line)
(insert "[[[")
(goto-char (point-max))
(beginning-of-line)
(delete-region (point) (point-at-eol))
(insert "]]]")
t)))))
(defun p2l-convert-code ()
"Convert all code blocks."
(p2l--setup-buffer)
(while (p2l-convert-code-once)))
(defun p2l-convert-double-quotes-once ()
"Convert the next ``such LaTeX'' to use Pillar emphasis."
(when (re-search-forward "``\\(.*?\\)''" nil t)
(replace-match "''\\1''")
t))
(defun p2l-convert-double-quotes ()
"Convert all ``such LaTeX'' to use Pillar emphasis."
(p2l--setup-buffer)
(while (p2l-convert-double-quotes-once)))
(defun p2l-convert-buffer ()
"Apply all LaTeX to Pillar conversions to the buffer."
(interactive)
(p2l--setup-buffer)
(p2l-remove-latex-comments)
(p2l-remove-header)
(p2l-remove-footer)
(p2l--interpret-command-conversion-table)
(p2l-convert-list)
(p2l-convert-figure)
(p2l-convert-code)
(p2l-convert-double-quotes)
(p2l--interpret-regex-conversion-table))
(provide 'pillar-latex2pillar)
;;; pillar-latex2pillar.el ends here
;; LocalWords: arg eg