How to make Obsidian and Jekyll equations compatible

TL;DR Set processEscapes to False or remove it from tax dictionary <script> MathJax = { tex: { inlineMath: [['$', '$'], ['\\(', '\\)']], }, svg: { fontCache: 'global' } }; </script> <script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"> </script> What was not working I’ve tried to write blog posts using Obsidian for my Jekyll website. The issue was the Mathjax version I was using didn’t recognize single dollar sign for inline equations. I was using this Mathjax setup taken from the documentation:...

February 1, 2024 · 1 min · 200 words · Me