I'm attempting to make a dictionary template aimed at conlangs. part of this involves a user-defined variable, clong-dict-types, which defines all word types/parts of speech and their formatting. The problem is, im having problems setting it up in a way that the template-defined entry() function recognizes the user-defined value.
clong-dict-types and entry() outside and before .with(): entry() only recognizes the default value of (:), not the user-defined value.
clong-dict-types in .with(), entry() outside + before .with(): entry() doesnt recognize the existence of clong-dict-types()
same as above but clong-dict-types initialized as (:) before entry() definition: only recognizes default value
both inside .with(): main.typ() doesnt recognize existence of entry()
probably other configurations ive tried, but i cant get anything to work