We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fexcel's handling of UALMs isn't very good.
With a spreadsheet like this:
fexcel processes:
: UALM{Test} ; : UALM{TestTwo} ;`
into
: UALM[1:Test] ; : UALM[2:TestTwo] ;
maketp doesn't like seeing the comments and fails to translate.
maketp
For now it's probably better to not use the --ualms flag in favor of --constants e.g. UALM_XXX holds the id e.g. UALM[${UALM_XXX}] => UALM[1]
--ualms
--constants
UALM_XXX
UALM[${UALM_XXX}]
UALM[1]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
fexcel's handling of UALMs isn't very good.
With a spreadsheet like this:
fexcel processes:
into
maketp
doesn't like seeing the comments and fails to translate.For now it's probably better to not use the
--ualms
flag in favor of--constants
e.g.UALM_XXX
holds the id e.g.UALM[${UALM_XXX}]
=>UALM[1]
The text was updated successfully, but these errors were encountered: