Skip to content

Latest commit

 

History

History
27 lines (17 loc) · 976 Bytes

CHANGELOG.md

File metadata and controls

27 lines (17 loc) · 976 Bytes

1.5.0 (2023-08-24)

Features

  • Now Marked.parse merges options (#28):
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)

1.4.0 (2021-03-29)

Features

  • Allow multiple words on gfm code (#20).

1.3.0 (2020-10-07)

Features

  • Added support for Angular Package Format. With this feature you can use this library both on the frontend and on the backend, and on the frontend the webpack can choose the most suitable package for a specific client.