no longer need to configure MathJax due to https://github.com/yihui/hugo-lithium...
authorYihui Xie <xie@yihui.name>
Thu, 13 Jul 2017 07:04:40 +0000 (02:04 -0500)
committerYihui Xie <xie@yihui.name>
Thu, 13 Jul 2017 07:07:56 +0000 (02:07 -0500)
exampleSite/content/about.md
exampleSite/content/post/2016-02-14-hello-markdown.md
exampleSite/layouts/partials/foot_custom.html

index aea884ae71683ed6f7a75b357d4f6dc560f63a7c..dd83942295ee7f2462bcf072e6fcf467c4f24684 100644 (file)
@@ -56,14 +56,6 @@ There are two layout files under `layouts/partials/` that you may want to overri
 
 ```html
 <script src="//yihui.name/js/math-code.js"></script>
-<script type="text/x-mathjax-config">
-MathJax.Hub.Config({
-  tex2jax: {
-    inlineMath: [['$','$'], ['\\(','\\)']],
-    processEscapes: true
-  }
-});
-</script>
 <script async src="//cdn.bootcss.com/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML">
 </script>
 
index 31bad7cd9360fcc40f7fdbc8de359c59bf19ff84..e06e31a05c7d7632aa7ef7a401f5087ed313fecf 100644 (file)
@@ -29,7 +29,7 @@ There are many differences in syntax between Blackfriday's Markdown and Pandoc's
 - [ ] ...
 - [ ] Profit!
 
-Similarly, Blackfriday does not support LaTeX math and Pandoc does. I have added the MathJax support to this theme ([hugo-xmin](https://github.com/yihui/hugo-xmin)) but there is a caveat for plain Markdown posts: you have to include math expressions in a pair of backticks (inline: `` `$ $` ``; display style: `` `$$ $$` ``), e.g., `$S_n = \sum_{i=1}^n X_i$`.^[This is because we have to protect the math expressions from being interpreted as Markdown. You may not need the backticks if your math expression does not contain any special Markdown syntax such as underscores or asterisks, but it is always a safer choice to use backticks. When you happen to have a pair of literal dollar signs inside the same element, you can escape one dollar sign, e.g., `\$50 and $100` renders "\$50 and $100".] For R Markdown posts, you do not need the backticks, because Pandoc can identify and process math expressions.
+Similarly, Blackfriday does not support LaTeX math and Pandoc does. I have added the MathJax support to this theme ([hugo-xmin](https://github.com/yihui/hugo-xmin)) but there is a caveat for plain Markdown posts: you have to include math expressions in a pair of backticks (inline: `` `$ $` ``; display style: `` `$$ $$` ``), e.g., `$S_n = \sum_{i=1}^n X_i$`.^[This is because we have to protect the math expressions from being interpreted as Markdown.] For R Markdown posts, you do not need the backticks, because Pandoc can identify and process math expressions.
 
 When creating a new post, you have to decide whether the post format is Markdown or R Markdown, and this can be done via the `rmd` argument of the function `blogdown::new_post()`, e.g.
 
index 3a95d130bd669064854957a7047aa1b0d4b4e4a0..658adb26cd8ab9c5b1a64422446c298201c024ad 100644 (file)
@@ -1,12 +1,4 @@
 <script src="//yihui.name/js/math-code.js"></script>
-<script type="text/x-mathjax-config">
-MathJax.Hub.Config({
-  tex2jax: {
-    inlineMath: [['$','$'], ['\\(','\\)']],
-    processEscapes: true
-  }
-});
-</script>
 <script async src="//cdn.bootcss.com/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML"></script>
 
 <script async src="//yihui.name/js/center-img.js"></script>