Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 1.3KB

123456789101112131415161718192021222324252627282930313233
  1. Utilities for determining whether characters belong to character classes defined
  2. by the XML specs.
  3. ## Organization
  4. It used to be that the library was contained in a single file and you could just
  5. import/require/what-have-you the `xmlchars` module. However, that setup did not
  6. work well for people who cared about code optimization. Importing `xmlchars`
  7. meant importing *all* of the library and because of the way the code was
  8. generated there was no way to shake the resulting code tree.
  9. Different modules cover different standards. At the time this documentation was
  10. last updated, we had:
  11. * `xmlchars/xml/1.0/ed5` which covers XML 1.0 edition 5.
  12. * `xmlchars/xml/1.0/ed4` which covers XML 1.0 edition 4.
  13. * `xmlchars/xml/1.1/ed2` which covers XML 1.0 edition 2.
  14. * `xmlchars/xmlns/1.0/ed3` which covers XML Namespaces 1.0 edition 3.
  15. ## Features
  16. The "things" each module contains can be categorized as follows:
  17. 1. "Fragments": these are parts and pieces of regular expressions that
  18. correspond to the productions defined in the standard that the module
  19. covers. You'd use these to *build regular expressions*.
  20. 2. Regular expressions that correspond to the productions defined in the
  21. standard that the module covers.
  22. 3. Lists: these are arrays of characters that correspond to the productions.
  23. 4. Functions that test code points to verify whether they fit a production.