bump product version to 4.1.6.2
[LibreOffice.git] / writerfilter / source / rtftok / README
blobe77c05f718475605272d7b2156f3ccd4b7bff838
1 = Writerfilter-based RTF tokenizer
3 == Mathematics
5 At the time of writing, all control words understood by SmOoxmlImport are
6 imported. To view the current status:
8 ----
9 grep M_TOKEN starmath/source/ooxmlimport.cxx |sed 's/.*\(M_TOKEN(\)/\1/;s/).*/)/'|sort -u > ~/math-import-list
10 grep '[^_]M_TOKEN' writerfilter/source/rtftok/rtfdocumentimpl.cxx |sed 's/.*\(M_TOKEN(\)/\1/;s/).*/)/'|sort -u > ~/wf-export-list
11 diff -u ~/math-import-list ~/wf-export-list |grep ^-M_TOKEN
12 ----