summaryrefslogtreecommitdiffstats
path: root/scripts/metadata.lua
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/metadata.lua')
-rw-r--r--scripts/metadata.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/metadata.lua b/scripts/metadata.lua
index 843ed3c..f83b314 100644
--- a/scripts/metadata.lua
+++ b/scripts/metadata.lua
@@ -145,6 +145,10 @@ function process_base(build, meta)
145 meta.post_icon = meta.post_icon or (meta.parent and meta.parent.list_post_icon) or 145 meta.post_icon = meta.post_icon or (meta.parent and meta.parent.list_post_icon) or
146 (meta.parent and meta.parent.parent and meta.parent.parent.list_post_icon) 146 (meta.parent and meta.parent.parent and meta.parent.parent.list_post_icon)
147 meta.indicator = meta.parent and meta.parent.list_read_indicators 147 meta.indicator = meta.parent and meta.parent.list_read_indicators
148
149 meta.content = meta.content:filter(function (el)
150 return el.tag ~= "LineBreak"
151 end)
148end 152end
149 153
150function process(global, build, meta) 154function process(global, build, meta)