hexo-renderer-mathjax icon indicating copy to clipboard operation
hexo-renderer-mathjax copied to clipboard

MathJax Renderer Plugin for Hexo

Results 9 hexo-renderer-mathjax issues
Sort by recently updated
recently updated
newest added

In my blog, there is a Latex: ``` $$ [p\to \{i\}],[r\to \{p\}],[q\to \{i\}],\colorbox{red}{$[s\to \{q,i\}]$},[t\to \{p\}] $$ ``` In my VS Code, it looks like: but it didn't work on my...

https://www.mathjax.org/cdn-shutting-down/

1. nested matrix ``` $\Omega^TA\Omega=\begin{pmatrix}\begin{pmatrix}a_1&b_1 \\ -b_1&a_1\end{pmatrix}\\&\ddots\\&&\begin{pmatrix}a_s&b_s \\ -b_s&a_s\end{pmatrix}\\&&&\lambda_{2s+1}\\&&&&\ddots\\&&&&&\lambda_n\end{pmatrix}$ ``` 2. ```*``` in matrix ``` $\begin{pmatrix}a&*\\0&b\end{pmatrix}$ ```

When I deploy my blog to github pages which use https, it gives the following error: ``` Mixed Content: The page at 'https://www.example.com/2019/09/23/2019%E5%B9%B49%E6%9C%8823%E6%97%A5/' was loaded over HTTPS, but requested an...

Please allow users to define a customized mathjax cdn address in _config.yml. Reasons: 1. The current http cdn won't load on https sites in some browsers. 2. Users in China...

Hello, It appears LaTeX markup is not formatting inside Jade templates. Unfortunately, Jade is popular and many Hexo themes are written in Jade templating. Would there be a workaround to...

![image](https://cloud.githubusercontent.com/assets/18397775/17976741/6466e828-6b21-11e6-90b3-8472e899e0ee.png)

``` $$ n! = \begin{cases} 1 & \text{if n = 0},\\ (n-1)! \ast n & \text{if n > 0} \end{cases} $$ ``` is giving content as `n!={1if n = 0,...