]> source.dussan.org Git - rspamd.git/commitdiff
[Minor] Add font-size to Lua API
authorVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 21 Jun 2018 13:22:20 +0000 (14:22 +0100)
committerVsevolod Stakhov <vsevolod@highsecure.ru>
Thu, 21 Jun 2018 13:22:20 +0000 (14:22 +0100)
src/lua/lua_html.c

index bfc411b946adfc6e4ca3a3ef8cf906780a109e05..8d75bfa67fef0481b194cdb9af3fd9574f5daf02 100644 (file)
@@ -92,6 +92,7 @@ LUA_FUNCTION_DEF (html, get_images);
  * `color` - a triplet (r g b) for font color
  * `bgcolor` - a triplet (r g b) for background color
  * `style` - rspamd{text} with the full style description
+ * `font_size` - font size
  * @return {table} table of blocks in html part
  */
 LUA_FUNCTION_DEF (html, get_blocks);
@@ -318,7 +319,7 @@ lua_html_push_block (lua_State *L, struct html_block *bl)
        struct rspamd_lua_text *t;
        struct html_tag **ptag;
 
-       lua_createtable (L, 0, 5);
+       lua_createtable (L, 0, 6);
 
        if (bl->tag) {
                lua_pushstring (L, "tag");
@@ -364,6 +365,10 @@ lua_html_push_block (lua_State *L, struct html_block *bl)
        lua_pushstring (L, "visible");
        lua_pushboolean (L, bl->visible);
        lua_settable (L, -3);
+
+       lua_pushstring (L, "font_size");
+       lua_pushnumber (L, bl->font_size);
+       lua_settable (L, -3);
 }
 
 static gint