Changes between Version 7 and Version 8 of WritingCompliantLibraries


Ignore:
Timestamp:
2015-09-22T15:24:56Z (9 years ago)
Author:
Adeel Asghar
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • WritingCompliantLibraries

    v7 v8  
    1414}}}
    1515To manually convert to 7-bit ASCII (as used by the MSL), use HTML entities. For example: `"°C"` becomes `"<html>&deg;C</html>"` and `<html>Linköping</html>` becomes `<html>Link&ouml;ping</html>`.
     16
     17=== Subscripting modifiers is not allowed ===
     18
     19Code 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});`.
    1620
    1721=== Wrong package.order ===