BenTalagan / glaemscribe

Glaemscribe, the tolkienian languages/writings transcription engine.
https://glaemscrafu.jrrvf.com/english/glaemscribe.html
Other
43 stars 8 forks source link

\outspace doesn't support a sequence #32

Closed davidfraser closed 2 years ago

davidfraser commented 2 years ago

I would like to use \outspace with a sequence of characters (\outspace CIRTH_SPACE CIRTH_PUNCT_MID_DOT CIRTH_SPACE) so there's a bit of space around the dot), which the documentation says is supported - however it doesn't work and I get:

Mode has some errors:

45: Element 'outspace' should have 1 arguments.
BenTalagan commented 2 years ago

Hi David,

Seems like the example in the doc is wrong. The glaeml language requires to separate the args (like in shell, using quotes & so on) and the outspace command requires 1 and only 1 arg. So the good solution should be to put your sequence into quotes :

\outspace "CIRTH_SPACE CIRTH_PUNCT_MID_DOT CIRTH_SPACE"

Let me know if it solves your problem !

davidfraser commented 2 years ago

Yes that works fine! Thanks...