Add post_blank to the rust types.
This commit is contained in:
@@ -12,6 +12,7 @@ use super::table_row::RenderTableRow;
|
||||
#[serde(rename = "table")]
|
||||
pub(crate) struct RenderTable {
|
||||
children: Vec<RenderTableRow>,
|
||||
post_blank: organic::types::PostBlank,
|
||||
}
|
||||
|
||||
render!(RenderTable, ITable, original, render_context, {
|
||||
@@ -23,5 +24,8 @@ render!(RenderTable, ITable, original, render_context, {
|
||||
ret
|
||||
};
|
||||
|
||||
Ok(RenderTable { children })
|
||||
Ok(RenderTable {
|
||||
children,
|
||||
post_blank: original.post_blank,
|
||||
})
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user