aboutsummaryrefslogtreecommitdiff
path: root/packages/markdown/remark/src/rehype-escape.ts
blob: 5cf463608787ab8fabab2401c0f0ea2351806e3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import { SKIP, visit } from 'unist-util-visit';

export default function rehypeEscape(): any {
	return function (node: any): any {
		return visit(node, 'element', (el) => {
			if (el.tagName === 'code' || el.tagName === 'pre') {
				el.properties['is:raw'] = true;
				// Visit all raw children and escape HTML tags to prevent Markdown code
				// like "This is a `<script>` tag" from actually opening a script tag
				visit(el, 'raw', (raw) => {
					raw.value = raw.value.replace(/</g, '&lt;').replace(/>/g, '&gt;');
				});
			}
			return el;
		});
	};
}