// Jest Snapshot v1, https://goo.gl/fbAQLP exports[`content with frontmatter 1`] = ` { "content": " - l1 - l1.1 - l1.2 - l1.2.1 ", "contentLineOffset": 4, "features": {}, "frontmatter": { "markmap": { "color": [ "blue", ], }, }, "root": { "children": [ { "children": [], "content": "l1.1", "depth": 1, "payload": { "lines": [ 2, 3, ], }, "type": "list_item", }, { "children": [ { "children": [], "content": "l1.2.1", "depth": 2, "payload": { "lines": [ 4, 5, ], }, "type": "list_item", }, ], "content": "l1.2", "depth": 1, "payload": { "lines": [ 3, 4, ], }, "type": "list_item", }, ], "content": "l1", "depth": 0, "payload": { "lines": [ 1, 2, ], }, "type": "list_item", }, } `; exports[`content with only katex enabled 1`] = ` { "content": " - $x = {-b pm sqrt{b^2-4ac} over 2a}$ ", "contentLineOffset": 4, "features": { "katex": true, }, "frontmatter": { "markmap": { "color": [ "blue", ], }, }, "root": { "children": [], "content": "x=bpmsqrtb24acover2ax = {-b pm sqrt{b^2-4ac} over 2a}", "depth": 0, "payload": { "lines": [ 1, 2, ], }, "type": "list_item", }, } `; exports[`content with only katex enabled 2`] = ` { "scripts": [ { "data": { "fn": [Function], "getParams": [Function], }, "type": "iife", }, { "data": { "defer": true, "src": "https://cdn.jsdelivr.net/npm/webfontloader@undefined/webfontloader.js", }, "type": "script", }, ], "styles": [ { "data": { "href": "https://cdn.jsdelivr.net/npm/katex@undefined/dist/katex.min.css", }, "type": "stylesheet", }, ], } `; exports[`content without frontmatter 1`] = ` { "content": "- l1 - l1.1 - l1.2 - l1.2.1 ", "contentLineOffset": 0, "features": {}, "root": { "children": [ { "children": [], "content": "l1.1", "depth": 1, "payload": { "lines": [ 1, 2, ], }, "type": "list_item", }, { "children": [ { "children": [], "content": "l1.2.1", "depth": 2, "payload": { "lines": [ 3, 4, ], }, "type": "list_item", }, ], "content": "l1.2", "depth": 1, "payload": { "lines": [ 2, 3, ], }, "type": "list_item", }, ], "content": "l1", "depth": 0, "payload": { "lines": [ 0, 1, ], }, "type": "list_item", }, } `; exports[`custom url provider 1`] = ` { "scripts": [ { "data": { "fn": [Function], "getParams": [Function], }, "type": "iife", }, { "data": { "defer": true, "src": "/local/webfontloader@undefined/webfontloader.js", }, "type": "script", }, ], "styles": [ { "data": { "href": "/local/katex@undefined/dist/katex.min.css", }, "type": "stylesheet", }, { "data": { "href": "/local/highlight.js@undefined/styles/default.css", }, "type": "stylesheet", }, ], } `; exports[`plugins 1`] = ` { "scripts": [ { "data": { "fn": [Function], "getParams": [Function], }, "type": "iife", }, { "data": { "defer": true, "src": "https://cdn.jsdelivr.net/npm/webfontloader@undefined/webfontloader.js", }, "type": "script", }, ], "styles": [ { "data": { "href": "https://cdn.jsdelivr.net/npm/katex@undefined/dist/katex.min.css", }, "type": "stylesheet", }, { "data": { "href": "https://cdn.jsdelivr.net/npm/highlight.js@undefined/styles/default.css", }, "type": "stylesheet", }, ], } `;