-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[66_3] TMU 1.0.0: identical to TM format
- Loading branch information
Showing
6 changed files
with
834 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
|
||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
;; | ||
;; MODULE : data/tmu.scm | ||
;; DESCRIPTION : tmu data format | ||
;; COPYRIGHT : (C) 2024 Darcy Shen | ||
;; | ||
;; This software falls under the GNU general public license version 3 or later. | ||
;; It comes WITHOUT ANY WARRANTY WHATSOEVER. For details, see the file LICENSE | ||
;; in the root directory or <http://www.gnu.org/licenses/gpl-3.0.html>. | ||
;; | ||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; | ||
|
||
(texmacs-module (data tmu)) | ||
|
||
(define-format tmu | ||
(:name "TMU") | ||
(:suffix "tmu" "tsu")) | ||
|
||
(converter tmu-document texmacs-tree | ||
(:function parse-tmu)) | ||
|
||
(converter texmacs-tree tmu-document | ||
(:function serialize-tmu)) | ||
|
||
(converter tmu-snippet texmacs-tree | ||
(:function parse-tmu-snippet)) | ||
|
||
(converter texmacs-tree tmu-snippet | ||
(:function serialize-tmu)) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.