diff options
author | dante <dante19031999@gmail.com> | 2021-02-17 13:55:33 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-02-19 15:01:16 +0100 |
commit | a260aac0a26dbf659aff55b8a76fdaa7636def53 (patch) | |
tree | d8964e4a3c3c325f524319bc7abb7fcc5b900fad /officecfg | |
parent | b925043f64179c23c5f7cfbc20b7c46cebdd1a26 (diff) |
Starmath now allows multiple parsers
This is an intermediate step towards making a parser wich supports
mathml standards.
The parser now is a "mask" wich calls the correct parser behind the
scenes.
Parser 6 is the same as parser 5, but will be implemented soon.
Parser 5 does what the old parser did.
Using as defualt smsyntax5 in order to be able to code parser6 without
provoking any backguards compatibility problem.
Change-Id: Iccf73e5ba96870450b98907f78a2a0c28abf6093
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/111066
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'officecfg')
-rw-r--r-- | officecfg/registry/schema/org/openoffice/Office/Math.xcs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/officecfg/registry/schema/org/openoffice/Office/Math.xcs b/officecfg/registry/schema/org/openoffice/Office/Math.xcs index 75d88ece69f0..7de3d7e0e84f 100644 --- a/officecfg/registry/schema/org/openoffice/Office/Math.xcs +++ b/officecfg/registry/schema/org/openoffice/Office/Math.xcs @@ -339,6 +339,24 @@ </info> <value>true</value> </prop> + <prop oor:name="DefaultSmSyntaxVersion" oor:type="xs:short" oor:nillable="false"> + <info> + <desc>Specifies which SmParser to use [UNIT=%]</desc> + </info> + <constraints> + <minInclusive oor:value="5"> + <info> + <desc>Specifies the minimum value allowed</desc> + </info> + </minInclusive> + <maxInclusive oor:value="6"> + <info> + <desc>Specifies the maximum value allowed.</desc> + </info> + </maxInclusive> + </constraints> + <value>5</value> + </prop> </group> <group oor:name="View"> <info> |