* [packages][m]: mv @flowershow/core package here * [packages/core][xs]: rename to @portaljs/core * [package.json][xs]: setup npm workspaces * [packages/core][xs]:replace deprecated rollup executor * [core/package.json][s]: fix mermaid versions * [core/tsconfig][xs]: rm extends * [core/jest.config][xs]: rm coverageDirectory * [core/package.json][xs]: install core-js * [packages.json][s]:use same version for all nrwl packages * [core/.eslintrc][xs]: adjust ignorePatterns * [core/project.json][xs]: rm publish targets * [packages][m]: mv @flowershow/remark-wiki-link here * [packages][m]: mv @flowershow/remark-wiki-link here * [packages][m]: mv @flowershow/remark-embed here * [remark-callouts/project.json][xs]: adjst test pattern * [package.json][s]: install missing deps * [remark-callouts][xs]: adjst fields in package.json * [remark-callouts][s]: rm pubish targets and adjst build executor * [remark-embed/jest.config][xs]: rm unknown option coverageDirectory * [remark-embed][xs]: rm publish targets * [remark-embed][s]: rename to @portaljs/remark-embed * [remark-wiki-link/eslintrc][xs]:adjst ignorePatterns * [package.json][xs]: install missing deps * [remark-wiki-link/test][xs]:specify format - also temporarily force any type on htmlExtension * [remark-wiki-link/README][xs]: replace @flowershow with @portaljs * [remark-wiki-link][xs]:rm old changelog * [remark-wiki-link][xs]: adjst package.json * [remark-wiki-link/project.json][xs]: rm publish targets * [core][s]: rm old changelog * [core/README][xs]:correct scope name * [remark-callouts/README][xs]: add @portaljs to pckg name * [remark-embed/README][xs]: add @portaljs to pckg name * [package-lock.json][xs]: refresh after rebasing on main
539 lines
19 KiB
TypeScript
539 lines
19 KiB
TypeScript
import markdown from "remark-parse";
|
|
import { unified } from "unified";
|
|
import { select } from "unist-util-select";
|
|
import { visit } from "unist-util-visit";
|
|
import { Node } from "unist";
|
|
|
|
import wikiLinkPlugin from "../src/lib/remarkWikiLink";
|
|
|
|
describe("remark-wiki-link", () => {
|
|
describe("parses a wikilink", () => {
|
|
test("with 'raw' file format (default) that has no matching permalink", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual("Wiki Link");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Wiki Link");
|
|
});
|
|
});
|
|
|
|
test("with 'raw' file format (default) that has a matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, {
|
|
permalinks: ["Wiki Link"],
|
|
});
|
|
|
|
let ast = processor.parse("[[Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual("internal");
|
|
expect((node.data?.hProperties as any).href).toEqual("Wiki Link");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Wiki Link");
|
|
});
|
|
});
|
|
|
|
test("with shortened Obsidian-style path that has no matching permalink", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin, {
|
|
pathFormat: "obsidian-short",
|
|
});
|
|
|
|
let ast = processor.parse("[[Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual("Wiki Link");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Wiki Link");
|
|
});
|
|
});
|
|
|
|
test("with shortened Obsidian-style path that has a matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, {
|
|
permalinks: ["/some/folder/Wiki Link"],
|
|
pathFormat: "obsidian-short",
|
|
});
|
|
|
|
let ast = processor.parse("[[Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("/some/folder/Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual("internal");
|
|
expect((node.data?.hProperties as any).href).toEqual(
|
|
"/some/folder/Wiki Link"
|
|
);
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Wiki Link");
|
|
});
|
|
});
|
|
|
|
// Obsidian absolute path doesn't have a leading slash
|
|
test("with 'obsidian-absolute' path format that has no matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, { pathFormat: "obsidian-absolute" });
|
|
|
|
let ast = processor.parse("[[some/folder/Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("/some/folder/Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual(
|
|
"/some/folder/Wiki Link"
|
|
);
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"some/folder/Wiki Link"
|
|
);
|
|
});
|
|
});
|
|
|
|
// Obsidian absolute path doesn't have a leading slash
|
|
test("with 'obsidian-absolute' path format that has a matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, {
|
|
permalinks: ["/some/folder/Wiki Link"],
|
|
pathFormat: "obsidian-absolute",
|
|
});
|
|
|
|
let ast = processor.parse("[[some/folder/Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("/some/folder/Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual("internal");
|
|
expect((node.data?.hProperties as any).href).toEqual(
|
|
"/some/folder/Wiki Link"
|
|
);
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"some/folder/Wiki Link"
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("aliases and headings", () => {
|
|
test("parses a wiki link with heading", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[Wiki Link#Some Heading]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("Wiki Link");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual(
|
|
"Wiki Link#some-heading"
|
|
);
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"Wiki Link#Some Heading"
|
|
);
|
|
});
|
|
});
|
|
|
|
test("parses a wiki link with heading and alias", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[Wiki Link#Some Heading|Alias]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("Wiki Link");
|
|
expect(node.data?.alias).toEqual("Alias");
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual(
|
|
"Wiki Link#some-heading"
|
|
);
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Alias");
|
|
});
|
|
});
|
|
|
|
test("parses a wiki link to a heading on the same page", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[#Some Heading]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual(""); // TODO should this be null?
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual("#some-heading");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Some Heading");
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("image embeds", () => {
|
|
test("parses an image embed of supported file format", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("![[My Image.png]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.isEmbed).toEqual(true);
|
|
expect(node.data?.target).toEqual("My Image.png");
|
|
expect(node.data?.permalink).toEqual("My Image.png");
|
|
expect(node.data?.hName).toEqual("img");
|
|
expect((node.data?.hProperties as any).src).toEqual("My Image.png");
|
|
expect((node.data?.hProperties as any).alt).toEqual("My Image.png");
|
|
});
|
|
});
|
|
|
|
test("parses an image embed of unsupported file format", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("![[My Image.xyz]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.isEmbed).toEqual(true);
|
|
expect(node.data?.target).toEqual("My Image.xyz");
|
|
expect(node.data?.permalink).toEqual("My Image.xyz");
|
|
expect(node.data?.hName).toEqual("p");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"![[My Image.xyz]]"
|
|
);
|
|
});
|
|
});
|
|
|
|
test("parses an image embed with a matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, {
|
|
permalinks: ["Pasted Image 123.png"],
|
|
});
|
|
|
|
let ast = processor.parse("![[Pasted Image 123.png]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.isEmbed).toEqual(true);
|
|
expect(node.data?.target).toEqual("Pasted Image 123.png");
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("Pasted Image 123.png");
|
|
expect(node.data?.hName).toEqual("img");
|
|
expect((node.data?.hProperties as any).src).toEqual(
|
|
"Pasted Image 123.png"
|
|
);
|
|
expect((node.data?.hProperties as any).alt).toEqual(
|
|
"Pasted Image 123.png"
|
|
);
|
|
});
|
|
});
|
|
|
|
test("parses an image embed with a matching permalink and Obsidian-style shortedned path", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, {
|
|
pathFormat: "obsidian-short",
|
|
permalinks: ["/assets/Pasted Image 123.png"],
|
|
});
|
|
|
|
let ast = processor.parse("![[Pasted Image 123.png]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.isEmbed).toEqual(true);
|
|
expect(node.data?.target).toEqual("Pasted Image 123.png");
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("/assets/Pasted Image 123.png");
|
|
expect(node.data?.hName).toEqual("img");
|
|
expect((node.data?.hProperties as any).src).toEqual(
|
|
"/assets/Pasted Image 123.png"
|
|
);
|
|
expect((node.data?.hProperties as any).alt).toEqual(
|
|
"Pasted Image 123.png"
|
|
);
|
|
});
|
|
});
|
|
|
|
test("parses an image embed with an alt text", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("![[My Image.png|Alt Text]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.isEmbed).toEqual(true);
|
|
expect(node.data?.target).toEqual("My Image.png");
|
|
expect(node.data?.permalink).toEqual("My Image.png");
|
|
expect(node.data?.hName).toEqual("img");
|
|
expect((node.data?.hProperties as any).src).toEqual("My Image.png");
|
|
expect((node.data?.hProperties as any).alt).toEqual("Alt Text");
|
|
});
|
|
});
|
|
|
|
test("parses a pdf embed", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("![[My Document.pdf]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.isEmbed).toEqual(true);
|
|
expect(node.data?.target).toEqual("My Document.pdf");
|
|
expect(node.data?.permalink).toEqual("My Document.pdf");
|
|
expect(node.data?.hName).toEqual("iframe");
|
|
expect((node.data?.hProperties as any).src).toEqual(
|
|
"My Document.pdf#toolbar=0"
|
|
);
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("invalid wiki links", () => {
|
|
test("doesn't parse a wiki link with two missing closing brackets", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[Wiki Link");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).toEqual(null);
|
|
});
|
|
|
|
test("doesn't parse a wiki link with one missing closing bracket", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[Wiki Link]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).toEqual(null);
|
|
});
|
|
|
|
test("doesn't parse a wiki link with a missing opening bracket", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("Wiki Link]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).toEqual(null);
|
|
});
|
|
|
|
test("doesn't parse a wiki link in single brackets", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[Wiki Link]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).toEqual(null);
|
|
});
|
|
});
|
|
|
|
test("supports different config options", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, {
|
|
aliasDivider: ":",
|
|
pathFormat: "obsidian-short",
|
|
permalinks: ["/some/folder/123/real-page"],
|
|
wikiLinkResolver: (pageName: string) => [
|
|
`123/${pageName.replace(/ /g, "-").toLowerCase()}`,
|
|
],
|
|
wikiLinkClassName: "my-wiki-link-class",
|
|
hrefTemplate: (permalink: string) => `https://my-site.com${permalink}`,
|
|
});
|
|
|
|
let ast = processor.parse("[[Real Page#Some Heading:Page Alias]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("/some/folder/123/real-page");
|
|
expect(node.data?.alias).toEqual("Page Alias");
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"my-wiki-link-class"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual(
|
|
"https://my-site.com/some/folder/123/real-page#some-heading"
|
|
);
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("Page Alias");
|
|
});
|
|
});
|
|
|
|
test("parses wiki links to index files", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[/some/folder/index]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
expect(select("wikiLink", ast)).not.toEqual(null);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("/some/folder");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual("internal new");
|
|
expect((node.data?.hProperties as any).href).toEqual("/some/folder");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"/some/folder/index"
|
|
);
|
|
});
|
|
});
|
|
|
|
describe("other", () => {
|
|
test("parses a wiki link to some index page in a folder with no matching permalink", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[/some/folder/index]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("/some/folder");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual("/some/folder");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"/some/folder/index"
|
|
);
|
|
});
|
|
});
|
|
|
|
test("parses a wiki link to some index page in a folder with a matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, { permalinks: ["/some/folder"] });
|
|
|
|
let ast = processor.parse("[[/some/folder/index]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("/some/folder");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual("internal");
|
|
expect((node.data?.hProperties as any).href).toEqual("/some/folder");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual(
|
|
"/some/folder/index"
|
|
);
|
|
});
|
|
});
|
|
|
|
test("parses a wiki link to home index page with no matching permalink", () => {
|
|
const processor = unified().use(markdown).use(wikiLinkPlugin);
|
|
|
|
let ast = processor.parse("[[/index]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(false);
|
|
expect(node.data?.permalink).toEqual("/");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual(
|
|
"internal new"
|
|
);
|
|
expect((node.data?.hProperties as any).href).toEqual("/");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("/index");
|
|
});
|
|
});
|
|
|
|
test("parses a wiki link to home index page with a matching permalink", () => {
|
|
const processor = unified()
|
|
.use(markdown)
|
|
.use(wikiLinkPlugin, { permalinks: ["/"] });
|
|
|
|
let ast = processor.parse("[[/index]]");
|
|
ast = processor.runSync(ast);
|
|
|
|
visit(ast, "wikiLink", (node: Node) => {
|
|
expect(node.data?.exists).toEqual(true);
|
|
expect(node.data?.permalink).toEqual("/");
|
|
expect(node.data?.alias).toEqual(null);
|
|
expect(node.data?.hName).toEqual("a");
|
|
expect((node.data?.hProperties as any).className).toEqual("internal");
|
|
expect((node.data?.hProperties as any).href).toEqual("/");
|
|
expect((node.data?.hChildren as any)[0].value).toEqual("/index");
|
|
});
|
|
});
|
|
});
|
|
});
|