We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ecc8e89 commit b922e98Copy full SHA for b922e98
CHANGELOG.md
@@ -1,5 +1,19 @@
1
+<a name="1.5.0"></a>
2
+# [1.5.0](https://github.com/ts-stack/markdown/releases/tag/1.5.0) (2023-08-24)
3
+
4
+### Features
5
6
+- Now `Marked.parse` merges options ([#28](https://github.com/ts-stack/markdown/issues/28)):
7
8
+```ts
9
+import { Marked, MarkedOptions } from '@ts-stack/markdown';
10
11
+const options: MarkedOptions = { sanitize: true };
12
+console.log(Marked.parse('some string', options)); // work with v1.5 (fail with v1.4 and earlier)
13
+```
14
15
<a name="1.4.0"></a>
-# [1.4.0](https://github.com/ts-stack/markdown/releases/tag/1.4.0) (2021-03-29)
16
+## [1.4.0](https://github.com/ts-stack/markdown/releases/tag/1.4.0) (2021-03-29)
17
18
### Features
19
0 commit comments