Experimental class-based conversion now working for TXT and HTML.
[librarian.git] / src / librarian / elements / themes / motyw.py
index 51042c6..6ec6c53 100644 (file)
@@ -2,13 +2,15 @@ from ..base import WLElement
 
 
 class Motyw(WLElement):
+    HTML_TAG = "a"
+
     def txt_build(self, builder):
         pass
 
-
-    def feed_to(self, builder):
-        assert not len(self)
-        themes = [
-            normalize_text(t.strip()) for t in self.text.split(',')
-        ]
-        builder.set_themes(self.attrib['id'], themes)
+    def get_html_attr(self, builder):
+        fid = self.attrib['id'][1:]
+        return {
+            "class": "theme-begin",
+            "fid": fid,
+            "name": "m" + fid,
+        }