diff --git a/cli/atom.ml b/cli/atom.ml
index 54bcfc6..02cfe7d 100644
--- a/cli/atom.ml
+++ b/cli/atom.ml
@@ -11,8 +11,8 @@ let opt_element tag_name content =
module P = Parsers.Plain_text.Make (Converter.Html)
-let id txt = "urn:txtid:" ^ Logarion.(txt.Text.id) ^ ""
-let title text = "
" ^ esc text.Logarion.Text.title ^ ""
+let id txt = "urn:txtid:" ^ Logarion.(txt.Text.id) ^ "\n"
+let title text = "" ^ esc text.Logarion.Text.title ^ "\n"
let authors text =
let u acc addr = acc ^ element "uri" addr in
@@ -20,16 +20,16 @@ let authors text =
let fn txt a =
a ^ "" ^ (opt_element "name" @@ esc txt.Person.name)
^ (List.fold_left u "" txt.Person.addresses)
- ^ "" in
+ ^ "\n" in
Person.Set.fold fn text.Text.authors ""
let updated txt = let open Logarion in
- ""^ Date.(txt.Text.date |> listing |> rfc_string) ^""
+ ""^ Date.(txt.Text.date |> listing |> rfc_string) ^"\n"
let htm_entry base_url text =
let open Logarion in
let u = Text.short_id text in
- "\n"
+ "\n\n"
^ title text ^ id text ^ updated text ^ authors text
^ (opt_element "summary" @@ esc @@ Text.str "abstract" text)
^ String_set.fold (fun elt a -> a ^ "\n") (Text.set "topics" text) ""
diff --git a/logarion.opam b/logarion.opam
index 6a158d4..91706df 100644
--- a/logarion.opam
+++ b/logarion.opam
@@ -6,7 +6,7 @@ maintainer: ["Izuru Yakumo "]
authors: ["orbifx "]
license: "EUPL-1.2"
homepage: "https://logarion.chaotic.ninja"
-bug-reports: "mailto:logarion@lists.tildeverse.org"
+bug-reports: "mailto:logarion-dev@chaotic.ninja"
depends: [
"dune" {>= "2.0"}
"cmdliner" {<= "1.0.4"}