Van Abel
                                            Van Abel
                                        
                                    I finally find the error are caused by the line: https://github.com/myint/language-check/blob/d0b845ce97e32665bde39b8717c9c293ef372383/language_check/__init__.py#L598 Since clearly the `org.languagetool.server.HTTPServer` class does not exists in any version of languagetool( I checked version 2.2/3.2/3.9). But I...
I solved it by adding an index.js and call main.js in it as the [esm package home](https://www.npmjs.com/package/esm).
我也想要mathjax支持, 插件不错啊, 用来写数学博客完全秒杀其他编辑器. 目前我都是用[stackedit](https://stackedit.io/), 没有vim的编辑方便. 但是支持mathjax自动预览. 而且经过我建议stackedit的插件支持_部分渲染_, 结果真的可以... 总之, mathjax其实是支持在线渲染的, 基本的东西只需要两行, 一行是mathjax cdn(这个就是一行js script), 一行是mathjax config(这个也可以不要, 使用默认不方便而已). 不用使用离线版. 我最近在更新我写的WP插件, 它除了自动根据页面是否有数学公式决定是否加载MathJax渲染脚本, 还会翻译部分latex命令. 例如title, author, tableofcontents, itemize等等. 欢迎交流!
不知你具体指什么例子, mathjax就是用来渲染数学公式的, 写数学用的latex, 数学公式部分mathjax完全可以正常渲染. 现在N多网站都用了, 例如ams math, arxiv, 等著名的数学站点. 甚至各个数学博客都是用mathjax渲染的. 如果是如何将mathjax整合到real time preview的话, 我决定也许可以参考stackedit的源码, 这个好像也是公开的. 其实我没做过实时渲染, 都是写好后, 刷新渲染数学.
我一般比较常用的是SVG的配置, 但是好像说对低版本IE的兼容性不是很好. 一般用你给的配置就挺通用的. 然后给定配置后可以精简字体的, 例如[精简Mathjax](http://sjnote.com/blog/2014/09/18/Mathjax-Lite.html)就针对 Jekyll精简后大约只有1.7M. 同时这里有个如何[精简的教程](https://segmentfault.com/a/1190000003822609)也可以参考.
我发现联网的话, 不用`mathjax-support-for-mkdp`. 本地测试完全正常. 不过如果真涉及到写数学的话, 大家不知道怎么处理数学的定理环境? 是不是可以尽量保持latex源码(像mathjax一样可以`\begin{equation}...\end{equation`}), 我期望能够: 1. 快速输入`\begin{thm}[thmname]...\end{thm}}`等(自动补全, 也许用UltiSnap自定义?) 2. 自动渲染成标准的定理格式(`thmname...`)
1. 我没有修改过index.html, 联网情况下不用mathjax support plugin是正常的逻辑, 请考虑保留或开发; 2. 定理环境是写各种定理的latex environment, 可以参考[latex share](https://cn.sharelatex.com/learn/Theorems_and_proofs)的例子 3. 如果不手动渲染的话, mathjax会认为是标准的数学环境, 但是实际上没有mathjax定义相应的渲染(也许是要加载mathjax宏包?amsthm?), 这会导致渲染不成功. 一个常见的办法是手动替换成标准的html+css. 不过此时需要注意的是定理的引用与自动编号问题. PS. 关于3, 以前在stackedit写过一个[issure](https://github.com/benweet/stackedit/issues/187)也许可以参考.
Or can you get some example of text files, which will convert to TEI properly.
@jan-niestadt Thanks, so If I want to build my-self corpus, How can I combine multi TEI into one? I mean, in practice, I would like to add one sentence containing...
Currently, I grub the data (submit text, and output tei) from the [OpenConvert](http://openconvert.clarin.inl.nl/openconvert/tagger/ui#text). Since the site may change, I want to have a local version of it, that means, I...