mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
11 lines
378 B
TypeScript
11 lines
378 B
TypeScript
// From original package README
|
|
// https://github.com/tylingsoft/markdown-it-source-map/blob/b5c374465ebd2a182b90720b99809f4c1b48b178/README.md
|
|
|
|
import * as markdownIt from 'markdown-it';
|
|
import markdownItSourceMap from 'markdown-it-source-map';
|
|
|
|
const mdi = markdownIt();
|
|
mdi.use(markdownItSourceMap);
|
|
|
|
mdi.render('# hello world'); // <h1 data-source-line="1">hello world</h1>
|