mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 03:16:11 +01:00
72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import { describe, it, expect } from "vitest";
|
|
import markdownExportService from "./md.js";
|
|
import { trimIndentation } from "../../../spec/support/utils.js";
|
|
|
|
describe("Markdown export", () => {
|
|
it("trims language tag for code blocks", () => {
|
|
const html = trimIndentation`\
|
|
<p>A diff:</p>
|
|
<pre><code class="language-text-x-diff">Hello
|
|
-world
|
|
+worldy
|
|
</code></pre>`;
|
|
const expected = trimIndentation`\
|
|
A diff:
|
|
|
|
\`\`\`diff
|
|
Hello
|
|
-world
|
|
+worldy
|
|
|
|
\`\`\``;
|
|
|
|
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
|
});
|
|
|
|
it("rewrites frontend script JavaScript code block", () => {
|
|
const html = `<pre><code class="language-application-javascript-env-frontend">Hello</code></pre>`;
|
|
const expected = trimIndentation`\
|
|
\`\`\`javascript
|
|
Hello
|
|
\`\`\``;
|
|
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
|
});
|
|
|
|
it("rewrites backend script JavaScript code block", () => {
|
|
const html = `<pre><code class="language-application-javascript-env-backend">Hello</code></pre>`;
|
|
const expected = trimIndentation`\
|
|
\`\`\`javascript
|
|
Hello
|
|
\`\`\``;
|
|
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
|
});
|
|
|
|
it("removes auto tag for code blocks", () => {
|
|
const html = trimIndentation`\
|
|
<pre><code class="language-text-x-trilium-auto">Hello
|
|
-world
|
|
+worldy
|
|
</code></pre>`;
|
|
const expected = trimIndentation`\
|
|
\`\`\`
|
|
Hello
|
|
-world
|
|
+worldy
|
|
|
|
\`\`\``;
|
|
|
|
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
|
});
|
|
|
|
it("supports code block with no language tag", () => {
|
|
const html = trimIndentation`\
|
|
<pre><code>Hello</code></pre>`;
|
|
const expected = trimIndentation`\
|
|
\`\`\`
|
|
Hello
|
|
\`\`\``;
|
|
|
|
expect(markdownExportService.toMarkdown(html)).toBe(expected);
|
|
});
|
|
});
|