summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/fontawesome5/fontawesome5.lua
diff options
context:
space:
mode:
Diffstat (limited to 'Master/texmf-dist/tex/latex/fontawesome5/fontawesome5.lua')
-rw-r--r--Master/texmf-dist/tex/latex/fontawesome5/fontawesome5.lua41
1 files changed, 41 insertions, 0 deletions
diff --git a/Master/texmf-dist/tex/latex/fontawesome5/fontawesome5.lua b/Master/texmf-dist/tex/latex/fontawesome5/fontawesome5.lua
new file mode 100644
index 00000000000..248bb6904e7
--- /dev/null
+++ b/Master/texmf-dist/tex/latex/fontawesome5/fontawesome5.lua
@@ -0,0 +1,41 @@
+-- Copyright 2018 Marcel Krueger
+--
+-- This work may be distributed and/or modified under the
+-- conditions of the LaTeX Project Public License, either version 1.3c
+-- of this license or (at your option) any later version.
+-- The latest version of this license is in
+-- http://www.latex-project.org/lppl.txt
+-- and version 1.3 or later is part of all distributions of LaTeX
+-- version 2005/12/01 or later.
+--
+-- This work has the LPPL maintenance status `maintained'.
+--
+-- The Current Maintainer of this work is Marcel Krueger
+--
+
+function fontawesome5_analyze_current_font(fontid)
+ local specialnames = {
+ ["500px"]=true,
+ h1=true,
+ h2=true,
+ h3=true,
+ ["repeat"]=true,
+ ["repeat-1"]=true
+ }
+ for name, value in pairs(font.getfont(fontid).resources.unicodes) do
+ tex.sprint(
+ luatexbase.catcodetables.expl,
+ "\\exp_args:NNc\\tex_global:D\\tex_chardef:D{c__fontawesome_slot_" .. name .. '_char}' .. value .. '\\scan_stop:')
+ if not (
+ ('-alt' == string.sub(name, -4))
+ or specialnames[name]
+ or value < 256
+ ) then
+ tex.sprint(
+ luatexbase.registernumber("CatcodeTableExpl"),
+ "\\cs_gset_protected:Npn"
+ .. string.gsub('\\fa-' .. name, '-(%w)', string.upper)
+ .. "{\\faPreselectedIcon{" .. name .. "}}")
+ end
+ end
+end