]> git.scottworley.com Git - paperdoorknob/blobdiff - glowfic.py
wrapfig → wrapstuff, for \wrapstuffclear
[paperdoorknob] / glowfic.py
index a4f3ca9b2e24eb5707c86cd3b03d1dc64db83bb6..c969ac055de6f96b921b9a6dc0b489173193cd90 100644 (file)
@@ -109,21 +109,16 @@ class BelowIconLayout(Layout):
         self._image_size = image_size
 
     def renderChunk(self, chunk: Chunk) -> bytes:
-        icon_width = b'0.25\\textwidth'  # TODO: Make this configurable
-        return b'''\\begin{wrapfigure}{l}{%s}
-%s
-
-%s
-
-%s
-
-%s
-\\end{wrapfigure}
+        return b'''\\begin{wrapstuff}[l]\\oalign{
+%s\\cr
+%s\\cr
+%s\\cr
+%s\\cr
+}\\end{wrapstuff}
 
 %s
 
 ''' % (
-            icon_width,
             renderIcon(chunk.icon, self._image_size),
             chunk.character.encode('UTF-8') if chunk.character else b'',
             chunk.screen_name.encode('UTF-8') if chunk.screen_name else b'',