1.5.0 (2023-08-24)
- 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)
- Allow multiple words on gfm code (#20).
1.3.0 (2020-10-07)
- 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.