output: Implement styling for footnotes.
[pspp] / src / output / render.c
index c3a59a6c429c01aa97ec7489a48cb543c7d5d0ce..f73137f0e35eafe8ab11b8981de11998f01c73cf 100644 (file)
@@ -1425,6 +1425,11 @@ add_footnote_page (struct render_pager *p, const struct table_item *item)
       {
         tab_text_format (t, 0, i, TAB_LEFT, "%s.", f[i]->marker);
         tab_text (t, 1, i, TAB_LEFT, f[i]->content);
+        if (f[i]->style)
+          {
+            tab_add_style (t, 0, i, f[i]->style);
+            tab_add_style (t, 1, i, f[i]->style);
+          }
       }
   render_pager_add_table (p, &t->table);