This commit is contained in:
Pierre-Yves Rollo
2025-10-11 11:59:00 +02:00
parent 4b0245dc8b
commit cf7c962487
8 changed files with 2520 additions and 63 deletions

View File

@@ -14,7 +14,7 @@ params = {
mod_title = "<your mod title>",
-- A good description would be "... fonts for font_api"
mod_descriptiion = "<your mod description>",
mod_description = "<your mod description>",
-- List of fons to include to the mod.
fonts = {
@@ -57,26 +57,26 @@ params = {
-- Codepoints not existing in font file will be ignored.
-- Refer to https://en.wikipedia.org/wiki/Unicode
codepoints = {
-- 00a0-00ff Latin-1 Supplement (full)
{ from=0x00a0, to=0x00ff },
-- 00a0-00ff Latin-1 Supplement (full except nbsp)
{ from = 0x00a1, to = 0x00ff },
-- 0100-017f Latin Extended-A (full)
{ from=0x0100, 0x017f },
{ from = 0x0100, to = 0x017f },
-- 0370-03ff Greek (full)
{ from=0x0370, 0x03ff },
{ from = 0x0370, to = 0x03ff },
-- 0400-04ff Cyrilic (full)
{ from=0x0400, 0x04ff },
{ from = 0x0400, to = 0x04ff },
-- 2000-206f General Punctuation (Limited to Dashes)
{ from=0x2010, 0x2015 },
{ from = 0x2010, to = 0x2015 },
-- 2000-206f General Punctuation (Limited to Quotes)
{ from=0x2018, 0x201F },
{ from = 0x2018, to = 0x201F },
-- 20a0-20cf Currency Symbols (Limited to Euro symbol)
{ from=0x20ac, 0x20ac },
{ from = 0x20ac, to = 0x20ac },
},
}
}