mizar.js 904 B

123456789101112131415161718192021222324
  1. /*
  2. Language: Mizar
  3. Author: Kelley van Evert <[email protected]>
  4. Category: scientific
  5. */
  6. function(hljs) {
  7. return {
  8. keywords:
  9. 'environ vocabularies notations constructors definitions ' +
  10. 'registrations theorems schemes requirements begin end definition ' +
  11. 'registration cluster existence pred func defpred deffunc theorem ' +
  12. 'proof let take assume then thus hence ex for st holds consider ' +
  13. 'reconsider such that and in provided of as from be being by means ' +
  14. 'equals implies iff redefine define now not or attr is mode ' +
  15. 'suppose per cases set thesis contradiction scheme reserve struct ' +
  16. 'correctness compatibility coherence symmetry assymetry ' +
  17. 'reflexivity irreflexivity connectedness uniqueness commutativity ' +
  18. 'idempotence involutiveness projectivity',
  19. contains: [
  20. hljs.COMMENT('::', '$')
  21. ]
  22. };
  23. }