Markdown-it plugin to embed files with the OSF's MFR
npm install @centerforopenscience/markdown-it-atrules> markdown-it plugin for embedding MFR files.
#### Enable plugin
``js`
md = require('markdown-it')({
html: true,
linkify: true,
typography: true,
}).use(require('../'), {
type: 'osf',
pattern: /^http(?:s?):\/\/(?:www\.)?[a-zA-Z0-9 .:]{1,}\/render\?url=http(?:s?):\/\/[a-zA-Z0-9 .:]{1,}\/([a-zA-Z0-9]{5})\/\?action=download|(^[a-zA-Z0-9]{5}$)/,
format(assetID) {
var id = '__markdown-it-atrules-' + (new Date()).getTime();
return '' +
'';
}
#### Inline style
This plugin is made to work in the inline style. If you'd like a block-style, you may be interested in https://github.com/rotorz/markdown-it-block-embed
#### OSF
This plugin allows you to use the OSF's Modualar File Renderer or the MFR to embed video or other files
into your markdown assuming your page has mfr.js and mfr.css loaded.
`md`
@osf
is interpreted as
`html
Alternately, you could use the url.
`md
@osf
``