Re: Motion 46 -- Right to left intervals
On 2013-07-22 12:07:57 -0400, James Cloos wrote:
> You can use the fribidi(1) cli application to experiment.
It seems that the result depends on space characters:
$ echo '[1.23,4.56]' | fribidi --rtl -t
[1.23,4.56] => [1.23,4.56]
$ echo '[ 1.23 , 4.56 ]' | fribidi --rtl -t
[ 1.23 , 4.56 ] => [ 4.56 , 1.23 ]
But:
$ echo '[1.23e17,4.56e-89]' | fribidi --rtl -t
[1.23e17,4.56e-89] => [1.23e17,4.56e-89]
$ echo '[ 1.23e17 , 4.56e-89 ]' | fribidi --rtl -t
[ 1.23e17 , 4.56e-89 ] => [ 1.23e17 , 4.56e-89 ]
--
Vincent Lefèvre <vincent@xxxxxxxxxx> - Web: <http://www.vinc17.net/>
100% accessible validated (X)HTML - Blog: <http://www.vinc17.net/blog/>
Work: CR INRIA - computer arithmetic / AriC project (LIP, ENS-Lyon)