diff --git a/formatitko.py b/formatitko.py index 62c4f33..4293929 100755 --- a/formatitko.py +++ b/formatitko.py @@ -10,6 +10,7 @@ from transform import transform from util import * from context import Context from html import html +from katex import KatexClient from mj_show import show @@ -22,5 +23,7 @@ doc = doc.walk(transform, context) print("---------------------") #print(show(doc)) #print(convert_text(doc, input_format="panflute", output_format="markdown")) -open("output.html", "w").write("
" + html(doc)) - +#open("output.html", "w").write(" " + html(doc)) +k = KatexClient() +input() +print(k) diff --git a/katex-server/.gitignore b/katex-server/.gitignore new file mode 100644 index 0000000..3c3629e --- /dev/null +++ b/katex-server/.gitignore @@ -0,0 +1 @@ +node_modules diff --git a/katex-server/README.md b/katex-server/README.md new file mode 100644 index 0000000..082cd55 --- /dev/null +++ b/katex-server/README.md @@ -0,0 +1 @@ +This was made by Standa Lukeš @exyi diff --git a/katex-server/index.js b/katex-server/index.js new file mode 100644 index 0000000..d6754c8 --- /dev/null +++ b/katex-server/index.js @@ -0,0 +1 @@ +console.log(require('katex').renderToString('\\frac{2a}{b}')) diff --git a/katex-server/index.mjs b/katex-server/index.mjs new file mode 100644 index 0000000..9987351 --- /dev/null +++ b/katex-server/index.mjs @@ -0,0 +1,105 @@ +// KaTeX rendering server +// Listens on unix socket, path is provided as first argument +// Expects JSON lines, each line is a query with the following schema: +// { +// formulas: [ +// { +// tex: string, +// options?: object +// } +// ], +// options?: object +// } + +// see https://katex.org/docs/options.html for list of available options +// If options formulas[].options field is used, the global options field is ignored. + +// For each line, returns one JSON line with the following schema: +// { +// results: [ +// { html?: string } | { error?: string } +// ] +// } | { error?: string } + + +// If one formula is invalid, the error in results is used +// If the entire query is invalid (couldn't parse JSON, for example), the outer error field is used + + +import katex from 'katex' +import net from 'net' +import * as readline from 'readline' + +const myArgs = process.argv.slice(2) + +const unixSocketPath = myArgs[0] +if (!unixSocketPath) { + console.error('you must specify socket path') + process.exit(1) +} + +// This server listens on a Unix socket at /var/run/mysocket +var unixServer = net.createServer(handleClient); +unixServer.listen(unixSocketPath); + +function handleExit(signal) { + // unixServer.emit('close') + unixServer.close(function () { + + }); + process.exit(0); // put this into the callback to avoid closing open connections +} +process.on('SIGINT', handleExit); +process.on('SIGQUIT', handleExit); +process.on('SIGTERM', handleExit); +process.on('exit', handleExit); + +const defaultOptions = {} + +/** + * @param {net.Socket} socket + * @returns {Promise