Developed for BTE Germany (GitHub).

Font "signletters" by Hugleton
You need to be in creative mode to use the command.
/givesign <material> <color> <font> <text>
You may need to adjust some characters by hand, depending on the combination
- Fork this repository
- Add your font as FONT_NAME.json file to
/src/main/resources/fonts/
- Feel free to create a PR, so others can also use your font
To add your font, the JSON file needs to have the following:
a) A number of letters that fit on one regular sign (this number is halved and rounded up for hanging signs)
b) A representation for every character in form of the four lines a sign has
{
"maxCharsPerSign" : 3,
"charMap" : {
" ": [" "," "," "," "],
"A": ["◢▊█▊◣","█ ݀█","███","█ ݀█"],
"B": ["██▊◣","█▄▊◤","█▀▊◣","██▊◤"],
"C": ["◢▊█▊◣","█▏ ▀","█▏ ▄","◥▊█▊◤"],
"D": ["██▊◣","█ ▏█","█ ▏█","██▊◤"]
}
}