refactor(server): rename md -> markdown for consistency

This commit is contained in:
Elian Doran 2025-03-14 16:25:10 +02:00
parent 875e65284c
commit 80421bb220
No known key found for this signature in database
4 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
import { describe, it, expect } from "vitest";
import markdownExportService from "./md.js";
import markdownExportService from "./markdown.js";
import { trimIndentation } from "../../../spec/support/utils.js";
describe("Markdown export", () => {

View File

@ -3,7 +3,7 @@
import mimeTypes from "mime-types";
import html from "html";
import { getContentDisposition, escapeHtml } from "../utils.js";
import mdService from "./md.js";
import mdService from "./markdown.js";
import becca from "../../becca/becca.js";
import type TaskContext from "../task_context.js";
import type BBranch from "../../becca/entities/bbranch.js";

View File

@ -4,7 +4,7 @@ import html from "html";
import dateUtils from "../date_utils.js";
import path from "path";
import mimeTypes from "mime-types";
import mdService from "./md.js";
import mdService from "./markdown.js";
import packageInfo from "../../../package.json" with { type: "json" };
import { getContentDisposition, escapeHtml } from "../utils.js";
import protectedSessionService from "../protected_session.js";