Skip to content

Commit

Permalink
Release v1.5.0, fixed #28
Browse files Browse the repository at this point in the history
  • Loading branch information
KostyaTretyak committed Aug 24, 2023
1 parent ecc8e89 commit b922e98
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
<a name="1.5.0"></a>
# [1.5.0](https://github.com/ts-stack/markdown/releases/tag/1.5.0) (2023-08-24)

### Features

- Now `Marked.parse` merges options ([#28](https://github.com/ts-stack/markdown/issues/28)):

```ts
import { Marked, MarkedOptions } from '@ts-stack/markdown';

const options: MarkedOptions = { sanitize: true };
console.log(Marked.parse('some string', options)); // work with v1.5 (fail with v1.4 and earlier)
```

<a name="1.4.0"></a>
# [1.4.0](https://github.com/ts-stack/markdown/releases/tag/1.4.0) (2021-03-29)
## [1.4.0](https://github.com/ts-stack/markdown/releases/tag/1.4.0) (2021-03-29)

### Features

Expand Down

0 comments on commit b922e98

Please sign in to comment.