mirror of
https://github.com/docsifyjs/docsify.git
synced 2025-12-08 19:55:52 +00:00
25 lines
773 B
JavaScript
25 lines
773 B
JavaScript
import prism from 'prismjs';
|
|
import marked from 'marked';
|
|
import * as util from './util';
|
|
import * as dom from './util/dom';
|
|
import { Compiler } from './render/compiler';
|
|
import { slugify } from './render/slugify';
|
|
import { get } from './fetch/ajax';
|
|
|
|
// TODO This is deprecated, kept for backwards compatibility. Remove in next
|
|
// major release. We'll tell people to get everything from the DOCSIFY global
|
|
// when using the global build, but we'll highly recommend for them to import
|
|
// from the ESM build (f.e. lib/docsify.esm.js and lib/docsify.min.esm.js).
|
|
export default function() {
|
|
window.Docsify = {
|
|
util,
|
|
dom,
|
|
get,
|
|
slugify,
|
|
version: '__VERSION__',
|
|
};
|
|
window.DocsifyCompiler = Compiler;
|
|
window.marked = marked;
|
|
window.Prism = prism;
|
|
}
|