Files
outline/shared/editor/rules/math.ts
T
dependabot[bot] fc01deeefd chore(deps-dev): bump oxlint-tsgolint from 0.14.2 to 0.22.1 (#12320)
* 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>
2026-05-12 07:59:13 -04:00

195 lines
4.9 KiB
TypeScript

import type MarkdownIt from "markdown-it";
import type StateBlock from "markdown-it/lib/rules_block/state_block.mjs";
import type StateInline from "markdown-it/lib/rules_inline/state_inline.mjs";
export const REGEX_INLINE_MATH_DOLLARS = /\$\$(.+)\$\$$/;
export const REGEX_BLOCK_MATH_DOLLARS = /\$\$\$\s+$/;
const inlineMathDelimiter = "$";
const blockMathDelimiter = "$$";
// test if potential opening or closing delimiter
// assumes that there is a "$" at state.src[pos]
function isValidDelimiter(state: StateInline, pos: number) {
const max = state.posMax;
let canOpen = true,
canClose = true;
const prevChar = pos > 0 ? state.src.charCodeAt(pos - 1) : -1;
const nextChar = pos + 1 <= max ? state.src.charCodeAt(pos + 1) : -1;
// check non-whitespace conditions for open/close, and
// check that closing delimiter isn't followed by a number
if (
prevChar === 0x20 || // " "
prevChar === 0x09 || // "\t"
(nextChar >= 0x30 && nextChar <= 0x39) // "0" - "9"
) {
canClose = false;
}
if (nextChar === 0x20 || nextChar === 0x09) {
canOpen = false;
}
return { canOpen, canClose };
}
function mathInline(state: StateInline, silent: boolean): boolean {
let match, token, res, pos;
if (
state.src.slice(state.pos, state.pos + inlineMathDelimiter.length) !==
inlineMathDelimiter
) {
return false;
}
res = isValidDelimiter(state, state.pos);
if (!res.canOpen) {
if (!silent) {
state.pending += "$";
}
state.pos += 1;
return true;
}
// first check for and bypass all properly escaped delimiters
// this loop will assume that the first leading backtick can not
// be the first character in state.src, which is known since
// we have found an opening delimiter already
const start = state.pos + inlineMathDelimiter.length;
match = start;
while ((match = state.src.indexOf(inlineMathDelimiter, match)) !== 1) {
// found potential delimeter, look for escapes, pos will point to
// first non escape when complete
pos = match - 1;
while (state.src[pos] === "\\") {
pos -= 1;
}
// even number of escapes, potential closing delimiter found
if ((match - pos) % 2 === 1) {
break;
}
match += 1;
}
// no closing delimiter found, consume $ and continue
if (match === -1) {
if (!silent) {
state.pending += "$";
}
state.pos = start;
return true;
}
// check if we have empty content (ex. $$) do not parse
if (match - start === 0) {
if (!silent) {
state.pending += inlineMathDelimiter + inlineMathDelimiter;
}
state.pos = start + inlineMathDelimiter.length;
return true;
}
// check for valid closing delimiter
res = isValidDelimiter(state, match);
if (!res.canClose) {
if (!silent) {
state.pending += "$";
}
state.pos = start;
return true;
}
if (!silent) {
token = state.push("math_inline", "math", 0);
token.markup = inlineMathDelimiter;
token.content = state.src.slice(start, match);
}
state.pos = match + inlineMathDelimiter.length;
return true;
}
function mathDisplay(
state: StateBlock,
start: number,
end: number,
silent: boolean
) {
let firstLine,
lastLine,
next,
lastPos,
found = false,
pos = state.bMarks[start] + state.tShift[start],
max = state.eMarks[start];
if (pos + blockMathDelimiter.length > max) {
return false;
}
if (
state.src.slice(pos, pos + blockMathDelimiter.length) !== blockMathDelimiter
) {
return false;
}
pos += blockMathDelimiter.length;
firstLine = state.src.slice(pos, max);
if (silent) {
return true;
}
if (
firstLine.trim().slice(-blockMathDelimiter.length) === blockMathDelimiter
) {
// Single line expression
firstLine = firstLine.trim().slice(0, -blockMathDelimiter.length);
found = true;
}
for (next = start; !found; ) {
next++;
if (next >= end) {
break;
}
pos = state.bMarks[next] + state.tShift[next];
max = state.eMarks[next];
if (pos < max && state.tShift[next] < state.blkIndent) {
// non-empty line with negative indent should stop the list:
break;
}
if (state.src.slice(pos, max).trim().slice(-3) === blockMathDelimiter) {
lastPos = state.src.slice(0, max).lastIndexOf(blockMathDelimiter);
lastLine = state.src.slice(pos, lastPos);
found = true;
}
}
state.line = next + 1;
const token = state.push("math_block", "math", 0);
token.block = true;
token.content =
(firstLine && firstLine.trim() ? firstLine + "\n" : "") +
state.getLines(start + 1, next, state.tShift[start], true) +
(lastLine && lastLine.trim() ? lastLine : "");
token.map = [start, state.line];
token.markup = blockMathDelimiter;
return true;
}
export default function markdownMath(md: MarkdownIt) {
md.inline.ruler.after("escape", "math_inline", mathInline);
md.block.ruler.after("blockquote", "math_block", mathDisplay, {
alt: ["paragraph", "reference", "blockquote", "list"],
});
}