Files
loongoffice/writerfilter/source/rtftok
Caolán McNamara f9ae1b31f7 fftester: another null DestinationText
Change-Id: I84bf3788ac092c491d7c5a9f86421f1cf9f3e814
2016-07-29 09:20:32 +01:00
..
2016-05-20 07:34:53 +00:00
2016-05-20 07:34:53 +00:00

= Writerfilter-based RTF tokenizer

== Mathematics

At the time of writing, all control words understood by SmOoxmlImport are
imported. To view the current status:

----
grep M_TOKEN starmath/source/ooxmlimport.cxx |sed 's/.*\(M_TOKEN(\) /\1/;s/ ).*/)/'|sort -u > ~/math-import-list
grep '[^_]M_TOKEN' writerfilter/source/rtftok/rtfdocumentimpl.cxx |sed 's/.*\(M_TOKEN(\)/\1/;s/).*/)/'|sort -u > ~/wf-export-list
diff -u ~/math-import-list ~/wf-export-list |grep ^-M_TOKEN
----

== Coding style

This directory uses mostly the same coding style like the rest of Fridrich's
libraries. Please run

----
astyle --options=astyle.options \*.cxx \*.hxx
----

before committing.