81
81
import { unreachable } from 'devlop'
82
82
import { toJsxRuntime } from 'hast-util-to-jsx-runtime'
83
83
import { urlAttributes } from 'html-url-attributes'
84
+ import { sanitizeUri } from 'micromark-util-sanitize-uri'
84
85
// @ts -expect-error: untyped.
85
86
import { Fragment , jsx , jsxs } from 'react/jsx-runtime'
86
87
import remarkParse from 'remark-parse'
@@ -89,8 +90,6 @@ import {unified} from 'unified'
89
90
import { visit } from 'unist-util-visit'
90
91
import { VFile } from 'vfile'
91
92
92
- const safeProtocols = [ 'http' , 'https' , 'mailto' , 'tel' ]
93
-
94
93
const own = { } . hasOwnProperty
95
94
const changelog =
96
95
'https://github.com/remarkjs/react-markdown/blob/main/changelog.md'
@@ -99,6 +98,7 @@ const changelog =
99
98
const emptyPlugins = [ ]
100
99
/** @type {Readonly<RemarkRehypeOptions> } */
101
100
const emptyRemarkRehypeOptions = { allowDangerousHtml : true }
101
+ const safeProtocol = / ^ ( h t t p s ? | i r c s ? | m a i l t o | x m p p ) $ / i
102
102
103
103
// Mutable because we `delete` any time it’s used and a message is sent.
104
104
/** @type {ReadonlyArray<Readonly<Deprecation>> } */
@@ -293,38 +293,5 @@ export function Markdown(options) {
293
293
* Safe URL.
294
294
*/
295
295
export function defaultUrlTransform ( value ) {
296
- const url = value . trim ( )
297
- const first = url . charAt ( 0 )
298
-
299
- if ( first === '#' || first === '/' ) {
300
- return url
301
- }
302
-
303
- const colon = url . indexOf ( ':' )
304
- if ( colon === - 1 ) {
305
- return url
306
- }
307
-
308
- for ( const protocol of safeProtocols ) {
309
- if (
310
- colon === protocol . length &&
311
- url . slice ( 0 , protocol . length ) . toLowerCase ( ) === protocol
312
- ) {
313
- return url
314
- }
315
- }
316
-
317
- let index = url . indexOf ( '?' )
318
- if ( index !== - 1 && colon > index ) {
319
- return url
320
- }
321
-
322
- index = url . indexOf ( '#' )
323
- if ( index !== - 1 && colon > index ) {
324
- return url
325
- }
326
-
327
- // To do: is there an alternative?
328
- // eslint-disable-next-line no-script-url
329
- return 'javascript:void(0)'
296
+ return sanitizeUri ( value , safeProtocol )
330
297
}
0 commit comments