Skip to content

Commit a540501

Browse files
committed
Updated README; removed obsolete org-to-xml.el
1 parent eaba940 commit a540501

File tree

2 files changed

+24
-289
lines changed

2 files changed

+24
-289
lines changed

README.org

+24-18
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
#+TITLE: org-to-xml
22
#+STARTUP: showeverything
33

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]].
66

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
99
especially pretty, but the assumption is that downstream XML
1010
processing tools can be used to transform it.
1111

1212
* om-to-xml
1313

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.)
2020

2121
Lo and behold! Nate Dwarshuis has written [[https://github.com/ndwarshuis/om.el][just such a library]]! The
2222
~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:
2929
+ Attribute handling
3030
+ Custom element processing
3131

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+
3241
** How it works
3342

3443
For the curious, here’s how it works.
@@ -163,14 +172,6 @@ I also confess, I’m completely winging it on current function
163172
naming/namspacing conventions.
164173

165174

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-
174175
* Pros and Cons
175176

176177
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
202203
data strutures. Unless I give up on this project altogether, of
203204
course.
204205

206+
* org-to-xml (obsolete)
205207

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.

org-to-xml.el

-271
This file was deleted.

0 commit comments

Comments
 (0)