@mathcrowd/mmarked 1.7.10 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/README.md +7 -2
- package/dist/browser.umd.js +1 -1
- package/dist/index.cjs +2 -0
- package/dist/index.mjs +2 -0
- package/package.json +5 -5
- package/dist/index.cjs.js +0 -2
- package/dist/index.esm.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# [1.8.0](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/compare/v1.7.11...v1.8.0) (2024-10-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* exts reorganized & tooltip supported. ([9a2f6c6](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/commits/9a2f6c620220a25f4cbd29571e8f82e59c28662c))
|
|
7
|
+
* tokenizer/renderer/rules config reorgnized. ([7aa58d3](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/commits/7aa58d38d2a93d52efe1657aeb19b22680b5346a))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
## [1.7.11](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/compare/v1.7.10...v1.7.11) (2024-10-25)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
1
15
|
## [1.7.10](https://cloud.mathcrowd.cn:2444/agile/frontend/mathcrowd-marked-lib/compare/v1.7.9...v1.7.10) (2024-10-25)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -17,8 +17,11 @@ A powerful TypeScript library for rendering customized markdown syntax with LaTe
|
|
|
17
17
|
|
|
18
18
|
## 🚀 Quick Start
|
|
19
19
|
|
|
20
|
-
###
|
|
20
|
+
### Editor Integeration
|
|
21
|
+
|
|
22
|
+
Use mmarked in VSCode : https://marketplace.visualstudio.com/items?itemName=MCLab.mmarked
|
|
21
23
|
|
|
24
|
+
### Server Side Integration
|
|
22
25
|
|
|
23
26
|
#### Installation
|
|
24
27
|
|
|
@@ -26,7 +29,7 @@ A powerful TypeScript library for rendering customized markdown syntax with LaTe
|
|
|
26
29
|
npm install @mathcrowd/mmarked mathjax-full highlight.js
|
|
27
30
|
```
|
|
28
31
|
|
|
29
|
-
|
|
32
|
+
#### Basic Usage
|
|
30
33
|
|
|
31
34
|
```typescript
|
|
32
35
|
import { tex2svg, renderMarkdown } from '@mathcrowd/mmarked'
|
|
@@ -90,6 +93,8 @@ Mathcrowd is an innovative startup founded by experienced independent developers
|
|
|
90
93
|
|
|
91
94
|
🌐 Our Online Math Community: [https://www.mathcrowd.cn](https://www.mathcrowd.cn)
|
|
92
95
|
|
|
96
|
+
💬 Join Our Discord: https://discord.gg/6VMUVA5Yq2
|
|
97
|
+
|
|
93
98
|
## 📄 License
|
|
94
99
|
|
|
95
100
|
[LICENSE](./LICENSE.md)
|