source: node_modules/highlight.js/lib/languages/mizar.js@ d24f17c

main
Last change on this file since d24f17c was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago

Initial commit

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2Language: Mizar
3Description: The Mizar Language is a formal language derived from the mathematical vernacular.
4Author: Kelley van Evert <kelleyvanevert@gmail.com>
5Website: http://mizar.org/language/
6Category: scientific
7*/
8
9function mizar(hljs) {
10 return {
11 name: 'Mizar',
12 keywords:
13 'environ vocabularies notations constructors definitions ' +
14 'registrations theorems schemes requirements begin end definition ' +
15 'registration cluster existence pred func defpred deffunc theorem ' +
16 'proof let take assume then thus hence ex for st holds consider ' +
17 'reconsider such that and in provided of as from be being by means ' +
18 'equals implies iff redefine define now not or attr is mode ' +
19 'suppose per cases set thesis contradiction scheme reserve struct ' +
20 'correctness compatibility coherence symmetry assymetry ' +
21 'reflexivity irreflexivity connectedness uniqueness commutativity ' +
22 'idempotence involutiveness projectivity',
23 contains: [
24 hljs.COMMENT('::', '$')
25 ]
26 };
27}
28
29module.exports = mizar;
Note: See TracBrowser for help on using the repository browser.