1
1
#+TITLE: org-to-xml
2
2
#+STARTUP: showeverything
3
3
4
- This project now contains two libraries to convert Emacs org-mode
5
- files to XML: [[*om-to-xml][om-to-xml]] and [[*org-to-xml (obsolete)][org-to-xml]] (now obsolete) .
4
+ This project contains a library to convert Emacs org-mode files to
5
+ XML: [[*om-to-xml][om-to-xml]].
6
6
7
- The goal is the same: a complete and accurate translation of the
8
- internal ~org-mode~ data structures to XML. This produces XML that isn’t
7
+ The goal is a complete and accurate translation of the internal
8
+ ~org-mode~ data structures to XML. This produces XML that isn’t
9
9
especially pretty, but the assumption is that downstream XML
10
10
processing tools can be used to transform it.
11
11
12
12
* om-to-xml
13
13
14
- Development of [[*org-to-xml (obsolete)][org-to-xml]] stalled when I realized that I didn’t really
15
- have a solid understanding of the underlying Org data structures
16
- and what I really needed to write first was a library that provided a
17
- consistent API that I could use in the conversion. (This is not a
18
- criticism of the Org developers; there are still corners of Emacs lisp
19
- that I don’t understand very well.)
14
+ This projects started began with [[*org-to-xml (obsolete)][org-to-xml]], but development stalled
15
+ when I realized that I didn’t really have a solid understanding of the
16
+ underlying Org data structures and what I really needed to write first
17
+ was a library that provided a consistent API that I could use in the
18
+ conversion. (This is not a criticism of the Org developers; there are
19
+ still corners of Emacs lisp that I don’t understand very well.)
20
20
21
21
Lo and behold! Nate Dwarshuis has written [[https://github.com/ndwarshuis/om.el][just such a library]]! The
22
22
~om-to-xml~ library is a rewrite of my XML conversion on top of that
@@ -29,6 +29,15 @@ mechanisms that ~org-to-xml~ did not:
29
29
+ Attribute handling
30
30
+ Custom element processing
31
31
32
+ ** How to use it
33
+
34
+ Install the library somewhere. I use [[https://github.com/raxod502/straight.el][straight.el]], but you can just
35
+ download the library and put it on your load path any way you like.
36
+
37
+ Run ~m-x om-to-xml~ in a buffer where you’re viewing an Org mode file.
38
+ An XML representation will be constructed and saved. If the Org mode
39
+ file is ~notes.org~, the XML file will be saved in ~notes.xml~.
40
+
32
41
** How it works
33
42
34
43
For the curious, here’s how it works.
@@ -163,14 +172,6 @@ I also confess, I’m completely winging it on current function
163
172
naming/namspacing conventions.
164
173
165
174
166
- * org-to-xml (obsolete)
167
-
168
- This version is moribund. I’m leaving it in place in case anyone is
169
- using it, but you should use [[*om-to-xml][om-to-xml]] instead.
170
-
171
- This version attempts to parse the raw Org data structures and there
172
- are places where it doesn’t do an especially good job.
173
-
174
175
* Pros and Cons
175
176
176
177
There are two obvious ways to approach the problem of converting .org files to .xml.
@@ -202,4 +203,9 @@ It’s likely that this list will grow as I learn more about the Org
202
203
data strutures. Unless I give up on this project altogether, of
203
204
course.
204
205
206
+ * org-to-xml (obsolete)
205
207
208
+ You can still find ~org-to-xml.el~ in this repository’s history (at tag
209
+ [[https://github.com/ndw/org-to-xml/tree/0.0.5][0.0.5]], for example). I’ve removed it from the master branch because I
210
+ really think it’s a dead end and it caused confusion for at least some
211
+ users.
0 commit comments