Skip to content

Commit

Permalink
lint: ts
Browse files Browse the repository at this point in the history
  • Loading branch information
kellyjosephprice committed Oct 30, 2024
1 parent 667205a commit 36bae34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion processor/migration/table-cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import * as rdmd from '@readme/markdown-legacy';
import { visit, SKIP } from 'unist-util-visit';

const magicIndex = (i: number, j: number) => `${i === 0 ? 'h' : `${i - 1}`}-${j}`;
const isInlineHtml = (node: $TSFixMe) => node.type === 'html' && !node.block;
const isInlineHtml = node => node.type === 'html' && !node.block;

// @note: This regex is detect malformed lists that were created by the
// markdown editor. Consider the following markdown:
Expand Down

0 comments on commit 36bae34

Please sign in to comment.