mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-11 22:18:41 +00:00
v0.10.0 release (#1751)
* Remove RC-versioned docs * Release v0.10.0 Bump master to v0.10.1-pre * Fix multiple occuring hash replacement * Update SRI hashes * Update CHANGELOG.md * Fix tags not shown * Update docusaurus * Wrap escaping backslashes with backticks * Update SRI hashes * Update CHANGELOG.md
This commit is contained in:
41
website/versioned_docs/version-0.10.0/node.md
Normal file
41
website/versioned_docs/version-0.10.0/node.md
Normal file
@@ -0,0 +1,41 @@
|
||||
---
|
||||
id: version-0.10.0-node
|
||||
title: Node.js
|
||||
original_id: node
|
||||
---
|
||||
## npm
|
||||
Install with `npm`:
|
||||
|
||||
```bash
|
||||
npm install katex
|
||||
# or globally
|
||||
npm install -g katex
|
||||
```
|
||||
|
||||
## Yarn
|
||||
Install with `Yarn`:
|
||||
|
||||
```bash
|
||||
yarn add katex
|
||||
# or globally
|
||||
yarn global add katex
|
||||
```
|
||||
|
||||
## Building from Source
|
||||
|
||||
To build you will need Git, Node.js 6.9 or later, and Yarn.
|
||||
|
||||
Clone a copy of the GitHub source repository:
|
||||
```bash
|
||||
git clone https://github.com/Khan/KaTeX.git
|
||||
cd KaTeX
|
||||
```
|
||||
|
||||
Then install dependencies and run `build` script:
|
||||
```bash
|
||||
yarn
|
||||
yarn build
|
||||
```
|
||||
|
||||
> You can manually download the package and source code from
|
||||
[GitHub releases](https://github.com/Khan/KaTeX/releases).
|
Reference in New Issue
Block a user