comparison mupdf-source/thirdparty/mujs/docs/index.html @ 2:b50eed0cc0ef upstream

ADD: MuPDF v1.26.7: the MuPDF source as downloaded by a default build of PyMuPDF 1.26.4. The directory name has changed: no version number in the expanded directory now.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 15 Sep 2025 11:43:07 +0200
parents
children
comparison
equal deleted inserted replaced
1:1d09e1dec1d9 2:b50eed0cc0ef
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <link href="style.css" rel="stylesheet">
5 <title>MuJS</title>
6 </head>
7
8 <body>
9
10 <header>
11 <h1>MuJS</h1>
12 </header>
13
14 <nav>
15 <a href="introduction.html">Introduction</a>
16 <a href="reference.html">Reference</a>
17 <a href="examples.html">Examples</a>
18 <a href="license.html">License</a>
19 <a href="http://git.ghostscript.com/?p=mujs.git;a=summary">Source</a>
20 <a href="https://bugs.ghostscript.com/">Bugs</a>
21 </nav>
22
23 <article>
24
25 <p>
26 MuJS is a lightweight Javascript interpreter designed for embedding in other
27 software to extend them with scripting capabilities.
28
29 <p>
30 MuJS was designed with a focus on small size, correctness, and simplicity.
31 It is written in portable C and implements ECMAScript as specified by ECMA-262.
32 The interface for binding with native code is designed to be as simple as
33 possible to use, and is very similar to Lua. There is no need to interact with
34 byzantine C++ template mechanisms, or worry about marking and unmarking garbage
35 collection roots, or wrestle with obscure build systems.
36
37 <p>
38 MuJS is developed and maintained by Artifex Software.
39 It was originally developed for use with the MuPDF viewer, but is designed to be useful as an independent component.
40
41 <p>
42 The primary meeting place for the MuJS community is the
43 <a href="http://webchat.freenode.net/?channels=mupdf">#mupdf</a>
44 IRC channel on freenode.
45
46 <p>
47 MuJS is free open source software distributed under the
48 <a href="https://opensource.org/licenses/ISC">ISC license</a>.
49
50 </article>
51
52 <footer>
53 <a href="http://artifex.com"><img src="artifex-logo.png" align="right"></a>
54 Copyright &copy; 2013-2017 Artifex Software Inc.
55 </footer>
56
57 </body>
58 </html>