Version 6.4.0.0.beta1, tag libreoffice-6.4.0.0.beta1
[LibreOffice.git] / writerfilter / source / rtftok / README
blob4adbb7563b8b5ed0b904d936e44bdfc046fcd482
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 ----