update KaTeX stylesheet reference
This commit is contained in:
parent
a42f77c713
commit
c462c97451
3 changed files with 15 additions and 5 deletions
|
@ -25,7 +25,7 @@ md.use(mk);
|
||||||
|
|
||||||
Include the KaTeX stylesheet in your html:
|
Include the KaTeX stylesheet in your html:
|
||||||
```html
|
```html
|
||||||
<link rel="stylesheet"href="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.3.0/katex.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.css">
|
||||||
```
|
```
|
||||||
|
|
||||||
If you're using the default markdown-it parser, I also recommend the github stylesheet:
|
If you're using the default markdown-it parser, I also recommend the github stylesheet:
|
||||||
|
|
16
index.html
16
index.html
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<head>
|
<head>
|
||||||
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/KaTeX/0.3.0/katex.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.5.1/katex.min.css">
|
||||||
<link rel="stylesheet" href="github-markdown.css">
|
<link rel="stylesheet" href="./github-markdown.css"/>
|
||||||
<style>
|
<style>
|
||||||
#input {
|
#input {
|
||||||
display: block;
|
display: block;
|
||||||
|
@ -14,7 +14,17 @@
|
||||||
</style>
|
</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<textarea id="input" type="textarea" rows=10, cols=80>$\sqrt{3x-1}+(1+x)^2$</textarea>
|
<textarea id="input" type="textarea" rows=10, cols=80>
|
||||||
|
# Maxwell's Equations
|
||||||
|
|
||||||
|
|
||||||
|
equation | description
|
||||||
|
----------|------------
|
||||||
|
$\nabla \cdot \vec{\mathbf{B}} = 0$ | divergence of $\vec{\mathbf{B}}$ is zero
|
||||||
|
$\nabla \times \vec{\mathbf{E}}\, +\, \frac1c\, \frac{\partial\vec{\mathbf{B}}}{\partial t} = \vec{\mathbf{0}}$ | curl of $\vec{\mathbf{E}}$ is proportional to the rate of change of $\vec{\mathbf{B}}$
|
||||||
|
$\nabla \times \vec{\mathbf{B}} -\, \frac1c\, \frac{\partial\vec{\mathbf{E}}}{\partial t} = \frac{4\pi}{c}\vec{\mathbf{j}} \nabla \cdot \vec{\mathbf{E}} = 4 \pi \rho$ | wha?
|
||||||
|
|
||||||
|
![electricity](http://i.giphy.com/Gty2oDYQ1fih2.gif)</textarea>
|
||||||
<button id="button">Mathdown!</button>
|
<button id="button">Mathdown!</button>
|
||||||
<div id="output" class="markdown-body"></div>
|
<div id="output" class="markdown-body"></div>
|
||||||
<script src="./bundle.js"></script>
|
<script src="./bundle.js"></script>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "markdown-it-katex",
|
"name": "markdown-it-katex",
|
||||||
"version": "1.0.4",
|
"version": "1.0.5",
|
||||||
"description": "Easy KaTeX support for markdown-it ",
|
"description": "Easy KaTeX support for markdown-it ",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
Reference in a new issue