How to use the @shd101wyy/mume.init function in @shd101wyy/mume

To help you get started, we’ve selected a few @shd101wyy/mume examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github donsheehy / datastructures / generatebook.js View on Github external
async function main() {
  await mume.init();

  const engine = new mume.MarkdownEngine({
    filePath: "./docs/fullbook.md",
    config: {
      previewTheme: "github-light.css",
      // revealjsTheme: "white.css"
      codeBlockTheme: "default.css",
      breakOnSingleNewLine: false,
      printBackground: true,
      enableScriptExecution: true, // <= for running code chunks
    },
  });

  // html export
  // await engine.htmlExport({ offline: false, runAllCodeChunks: true });
  // console.log("Should be done.");
github shd101wyy / vscode-markdown-preview-enhanced / src / preview-content-provider.ts View on Github external
public constructor(private context: vscode.ExtensionContext) {
    this.config = MarkdownPreviewEnhancedConfig.getCurrentConfig();

    mume
      .init() // init markdown-preview-enhanced
      .then(() => {
        mume.onDidChangeConfigFile(this.refreshAllPreviews.bind(this));
        MarkdownEngine.onModifySource(this.modifySource.bind(this));

        const extensionVersion = require(path.resolve(
          this.context.extensionPath,
          "./package.json",
        ))["version"];
        if (extensionVersion !== mume.configs.config["vscode_mpe_version"]) {
          mume.utility.updateExtensionConfig({
            vscode_mpe_version: extensionVersion,
          });
        }
      });
  }