added support for markdown-it-abbr (#238)

this makes it possible to use abbreviations like these
```
*[HTML]: Hyper Text Markup Language
*[W3C]:  World Wide Web Consortium
The HTML specification
is maintained by the W3C.
```

Co-authored-by: Philip Molares <philip@mauricedoepke.de>
This commit is contained in:
Philip Molares 2020-06-20 19:29:46 +02:00 committed by GitHub
parent 09c21e4334
commit 4852727f92
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,6 @@
declare module 'markdown-it-abbr' {
import MarkdownIt from 'markdown-it/lib'
const markdownItAbbreviation: MarkdownIt.PluginSimple
export = markdownItAbbreviation
}