diff options
author | Patryk Niedźwiedziński <pniedzwiedzinski19@gmail.com> | 2020-06-25 21:07:41 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-25 21:07:41 +0000 |
commit | a934501255ab09bcce133dc6b903f70f6baee462 (patch) | |
tree | 57e95770af2ce03c948bee2bed2b4b8557b650e6 | |
parent | cf8a99205c40771c0081787ab662bb07de0ba257 (diff) | |
parent | 539b1373173cbd0f4b1366bc5fc1d8d0feeaa6d1 (diff) | |
download | kronikarz-a934501255ab09bcce133dc6b903f70f6baee462.tar.gz kronikarz-a934501255ab09bcce133dc6b903f70f6baee462.zip |
Merge pull request #13 from pniedzwiedzinski/html5-media
Html5 media
-rw-r--r-- | lib/Post.ts | 2 | ||||
-rw-r--r-- | package.json | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/lib/Post.ts b/lib/Post.ts index f99ef83..77d16d4 100644 --- a/lib/Post.ts +++ b/lib/Post.ts @@ -3,6 +3,8 @@ import { JSDOM } from 'jsdom'; const frontmatter = require('front-matter'); const md = require('markdown-it')(); +const { html5Media } = require('@gerhobbelt/markdown-it-html5-media'); +md.use(html5Media); import { dateToPath, dateToString } from './utils'; import { Date, FrontMatterObject, PostApiEntry, Meta } from './interfaces'; diff --git a/package.json b/package.json index 1dfe621..47ac8b0 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,8 @@ "@types/jsdom": "^12.2.4", "front-matter": "^3.0.2", "jsdom": "^15.1.1", - "markdown-it": "^10.0.0" + "markdown-it": "^10.0.0", + "@gerhobbelt/markdown-it-html5-media": "0.6.0-1" }, "devDependencies": { "@types/jest": "^24.0.18", |