diff options
author | Matthias Benkard <code@mail.matthias.benkard.de> | 2010-01-23 17:36:25 +0100 |
---|---|---|
committer | Matthias Benkard <code@mail.matthias.benkard.de> | 2010-01-23 17:36:25 +0100 |
commit | 60f785aad98aacfe56b76d6f7ef166f8975cb0c3 (patch) | |
tree | ec4b8accf9d39bf854741a8118ec3a8794df2414 | |
parent | a61f2c69cbdbb6814f5173542fb0ff6cc82c98e0 (diff) |
Allow HTML in article titles.
Ignore-this: 50e7b402ab0c62a0c18510b32b7b5ad
darcs-hash:ada0af9783ba687e2ad2d663e1e34459bb92a44e
-rwxr-xr-x | journal.lisp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/journal.lisp b/journal.lisp index 5cccfed..c27acda 100755 --- a/journal.lisp +++ b/journal.lisp @@ -156,8 +156,9 @@ (with-slots (title date body categories last-modification id) journal-entry (with-tag ("entry") - (emit-simple-tags :title title - :id (format nil "urn:uuid:~(~A~)" + (with-tag ("title" `(("type" "html"))) + (xml-out title)) + (emit-simple-tags :id (format nil "urn:uuid:~(~A~)" (uuid-of journal-entry)) :updated (atom-time (or last-modification date)) :published (atom-time date)) |