-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathremark-component-spacing.ts
34 lines (31 loc) · 1.2 KB
/
remark-component-spacing.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import type {Root} from 'mdast';
import type {Plugin} from 'unified';
import type {Node} from 'unist';
import {visit} from 'unist-util-visit';
const affectedComponents = ['PlatformIdentifier'];
const remarkComponentSpacing: Plugin<void[], Root> = function () {
return (tree, _file) => {
let componentNode: Node | undefined = undefined;
let componentNodeParent: Node | undefined = undefined;
return visit(tree, (node, _, parent) => {
if (componentNode) {
if (parent === componentNodeParent) {
// If the component is followed by text starting with a space, turn it
// into a no-break space character (unicode 00A0). Otherwise MDX
// removes the space, leading to smushed text.
if (node.type === 'text' && node.value && node.value[0] === ' ') {
node.value = `\u00A0${node.value.substring(1)}`;
}
}
componentNode = componentNodeParent = undefined;
} else if (
node.type === 'mdxJsxTextElement' &&
affectedComponents.includes(node.name ?? '')
) {
componentNode = node as Node;
componentNodeParent = parent as Node;
}
});
};
};
export default remarkComponentSpacing;