summaryrefslogtreecommitdiffstats
path: root/filters/icons.lua
diff options
context:
space:
mode:
authorVolpeon <git@volpeon.ink>2021-11-20 18:39:28 +0100
committerVolpeon <git@volpeon.ink>2021-11-20 18:39:28 +0100
commit08843807299c0c23f2125eb1fd6947d1ea03fcba (patch)
treec1885b89b9297667b63e63d16439f61ed162388d /filters/icons.lua
parentImproved font size again (diff)
downloadvolpeon.ink-08843807299c0c23f2125eb1fd6947d1ea03fcba.tar.gz
volpeon.ink-08843807299c0c23f2125eb1fd6947d1ea03fcba.tar.bz2
volpeon.ink-08843807299c0c23f2125eb1fd6947d1ea03fcba.zip
Improved list structure
Diffstat (limited to 'filters/icons.lua')
-rw-r--r--filters/icons.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/filters/icons.lua b/filters/icons.lua
index 3800e5d..fb6a608 100644
--- a/filters/icons.lua
+++ b/filters/icons.lua
@@ -3,8 +3,8 @@ function Str(el)
3 3
4 if icon then 4 if icon then
5 return pandoc.RawInline('html', 5 return pandoc.RawInline('html',
6 '<svg class="o-icon o-icon--inline" width="1em" height="1em"><use href="/symbols.svg#' .. icon .. 6 '<svg class="o-icon o-icon--inline" width="1em" height="1em"><use href="/symbols.svg#icon-' ..
7 '"></use></svg>') 7 icon .. '"></use></svg>')
8 end 8 end
9 9
10 return el 10 return el