Add a wrapper for linkify (#268)

Signed-off-by: Tilman Vatteroth <tilman.vatteroth@tu-dortmund.de>
This commit is contained in:
mrdrogdrog 2020-06-24 23:52:45 +02:00 committed by GitHub
parent b74bb8e71d
commit cdadc7b41a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,6 @@
declare module 'markdown-it/lib/rules_core/linkify' {
import { RuleCore } from 'markdown-it/lib/parser_core'
const markdownItLinkify: RuleCore
export = markdownItLinkify
}