Changes between Version 7 and Version 8 of WritingCompliantLibraries
- Timestamp:
- 2015-09-22T15:24:56Z (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
WritingCompliantLibraries
v7 v8 14 14 }}} 15 15 To manually convert to 7-bit ASCII (as used by the MSL), use HTML entities. For example: `"°C"` becomes `"<html>°C</html>"` and `<html>Linköping</html>` becomes `<html>Linköping</html>`. 16 17 === Subscripting modifiers is not allowed === 18 19 Code like `M m(arr[:]={1.0,2.0});` is not allowed in the Modelica grammar, but this can easily be re-written to: `M m(arr={1.0,2.0});`. 16 20 17 21 === Wrong package.order ===