mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
Add \\( and \\[ as mathjax delimiters (#239)
This commit is contained in:
@@ -50,3 +50,4 @@
|
|||||||
- [José Mª Escartín](https://github.com/jme52)
|
- [José Mª Escartín](https://github.com/jme52)
|
||||||
- [John Schroeder](https://blog.schroedernet.software)
|
- [John Schroeder](https://blog.schroedernet.software)
|
||||||
- [Tobias Lindberg](https://tobiaslindberg.com)
|
- [Tobias Lindberg](https://tobiaslindberg.com)
|
||||||
|
- [KK](https://github.com/bebound)
|
||||||
|
|||||||
@@ -6,10 +6,7 @@
|
|||||||
MathJax = {
|
MathJax = {
|
||||||
tex: {
|
tex: {
|
||||||
inlineMath: [
|
inlineMath: [
|
||||||
['$', '$']
|
['$', '$'], ['\\(', '\\)']
|
||||||
],
|
|
||||||
displayMath: [
|
|
||||||
['$$', '$$']
|
|
||||||
],
|
],
|
||||||
processEscapes: true,
|
processEscapes: true,
|
||||||
processEnvironments: true
|
processEnvironments: true
|
||||||
@@ -29,6 +26,8 @@
|
|||||||
delimiters: [
|
delimiters: [
|
||||||
{left: '$$', right: '$$', display:true},
|
{left: '$$', right: '$$', display:true},
|
||||||
{left: '$', right: '$', display:false},
|
{left: '$', right: '$', display:false},
|
||||||
|
{left: '\\(', right: '\\)', display: false},
|
||||||
|
{left: '\\[', right: '\\]', display: true}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
);">
|
);">
|
||||||
|
|||||||
Reference in New Issue
Block a user