diff options
-rw-r--r-- | atom.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/atom.c b/atom.c index 405bf39..b0ee921 100644 --- a/atom.c +++ b/atom.c @@ -88,7 +88,11 @@ int atomEntryOpen(FILE *file, const struct Envelope *envelope) { int atomContent(FILE *file, const char *content) { const char *template = TEMPLATE( - <content type="text">[content]</content> + <content type="xhtml"> + <div xmlns="http://www.w3.org/1999/xhtml"> + <pre>[content]</pre> + </div> + </content> ); struct Variable vars[] = { { "content", content }, |