wip change fb2 api
[librarian.git] / src / librarian / elements / separators / separator_linia.py
index e5a5218..e5b0709 100644 (file)
@@ -11,7 +11,11 @@ class SeparatorLinia(WLElement):
     EPUB_TAG = HTML_TAG = "hr"
     EPUB_CLASS = HTML_CLASS = "spacer-line"
     
-    def _txt_build_inner(self, builder):
+    def txt_build_inner(self, builder):
         builder.push_text('-' * 48)
 
+    def fb2_build(self, builder):
+        builder.simple_element('empty-line')
+        builder.simple_element('p', '—' * 8)
+        builder.simple_element('empty-line')