mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
fc01deeefd
* chore(deps-dev): bump oxlint-tsgolint from 0.14.2 to 0.22.1 Bumps [oxlint-tsgolint](https://github.com/oxc-project/tsgolint) from 0.14.2 to 0.22.1. - [Release notes](https://github.com/oxc-project/tsgolint/releases) - [Commits](https://github.com/oxc-project/tsgolint/compare/v0.14.2...v0.22.1) --- updated-dependencies: - dependency-name: oxlint-tsgolint dependency-version: 0.22.1 dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * chore: Switch tsconfig to bundler resolution for tsgolint 0.22.1 oxlint-tsgolint 0.22.1 removed support for moduleResolution=node10 (the alias for "node"). Switch to "bundler" with resolvePackageJsonExports disabled so packages whose exports field omits a types condition still resolve. Update markdown-it type imports to sub-paths since the package's .d.mts entry only re-exports a subset of named types. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> * fix: Resolve type-aware lint errors caught by tsgolint 0.22.1 oxlint-tsgolint 0.22.1 catches several await-thenable, no-floating-promises, and no-meaningless-void-operator cases the prior 0.14.2 missed: - Drop redundant inner `await` from Promise.all([await x, await y]) call sites so the array entries are real Promises rather than already-resolved values. - Replace Promise.all wrappers around synchronous presenters (presentEvent, presentTemplate, presentPublicTeam) with plain map / direct calls. - Wrap non-promise branches of ternaries inside Promise.all with Promise.resolve so the array remains thenable across both arms. - Add `void` to the unawaited provider.connect() in the auth-failed retry chain, and remove `void` from the disconnect() call which returns void. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tom Moor <tom@getoutline.com> Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
45 lines
1.0 KiB
TypeScript
45 lines
1.0 KiB
TypeScript
import markdownit, {
|
|
type Options as MarkdownItOptions,
|
|
type PluginSimple,
|
|
} from "markdown-it";
|
|
import type { Schema } from "prosemirror-model";
|
|
|
|
type Options = {
|
|
/** Markdown-it options. */
|
|
rules?: MarkdownItOptions;
|
|
/** Markdown-it plugins. */
|
|
plugins?: PluginSimple[];
|
|
/** The schema for associated editor. */
|
|
schema?: Schema;
|
|
};
|
|
|
|
export default function makeRules({
|
|
rules = {},
|
|
plugins = [],
|
|
schema,
|
|
}: Options) {
|
|
const markdownIt = markdownit("default", {
|
|
breaks: false,
|
|
html: false,
|
|
linkify: false,
|
|
...rules,
|
|
});
|
|
|
|
// Disable default markdown-it rules that are not supported by the schema.
|
|
if (!schema?.nodes.ordered_list || !schema?.nodes.bullet_list) {
|
|
markdownIt.disable("list");
|
|
}
|
|
if (!schema?.nodes.blockquote) {
|
|
markdownIt.disable("blockquote");
|
|
}
|
|
if (!schema?.nodes.hr) {
|
|
markdownIt.disable("hr");
|
|
}
|
|
if (!schema?.nodes.heading) {
|
|
markdownIt.disable("heading");
|
|
}
|
|
|
|
plugins.forEach((plugin) => markdownIt.use(plugin));
|
|
return markdownIt;
|
|
}
|