Skip to content

Commit de29396

Browse files
authored
Removing linkTarget option
Closes GH-761. Closes GH-762. Reviewed-by: Titus Wormer <tituswormer@gmail.com> Reviewed-by: Christian Murphy <christian.murphy.42@gmail.com> Reviewed-by: Remco Haszing <remcohaszing@gmail.com>
1 parent 0242d11 commit de29396

File tree

4 files changed

+0
-81
lines changed

4 files changed

+0
-81
lines changed

lib/ast-to-react.js

-20
Original file line numberDiff line numberDiff line change
@@ -42,14 +42,6 @@
4242
* @param {string?} title
4343
* @returns {string}
4444
*
45-
* @typedef {import('react').HTMLAttributeAnchorTarget} TransformLinkTargetType
46-
*
47-
* @callback TransformLinkTarget
48-
* @param {string} href
49-
* @param {Array<ElementContent>} children
50-
* @param {string?} title
51-
* @returns {TransformLinkTargetType|undefined}
52-
*
5345
* @typedef {keyof JSX.IntrinsicElements} ReactMarkdownNames
5446
*
5547
* To do: is `data-sourcepos` typeable?
@@ -96,7 +88,6 @@
9688
* @property {boolean} [includeElementIndex=false]
9789
* @property {null|false|TransformLink} [transformLinkUri]
9890
* @property {TransformImage} [transformImageUri]
99-
* @property {TransformLinkTargetType|TransformLinkTarget} [linkTarget]
10091
* @property {Components} [components]
10192
*/
10293

@@ -223,17 +214,6 @@ function toReact(context, node, index, parent) {
223214

224215
properties.key = index
225216

226-
if (name === 'a' && options.linkTarget) {
227-
properties.target =
228-
typeof options.linkTarget === 'function'
229-
? options.linkTarget(
230-
String(properties.href || ''),
231-
node.children,
232-
typeof properties.title === 'string' ? properties.title : null
233-
)
234-
: options.linkTarget
235-
}
236-
237217
if (name === 'a' && transform) {
238218
properties.href = transform(
239219
String(properties.href || ''),

lib/react-markdown.js

-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,6 @@ ReactMarkdown.propTypes = {
178178
skipHtml: PropTypes.bool,
179179
includeElementIndex: PropTypes.bool,
180180
transformLinkUri: PropTypes.oneOfType([PropTypes.func, PropTypes.bool]),
181-
linkTarget: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
182181
transformImageUri: PropTypes.func,
183182
components: PropTypes.object
184183
}

readme.md

-4
Original file line numberDiff line numberDiff line change
@@ -203,8 +203,6 @@ The default export is `ReactMarkdown`.
203203
extract (unwrap) the children of not allowed elements, by default, when
204204
`strong` is disallowed, it and it’s children are dropped, but with
205205
`unwrapDisallowed` the element itself is replaced by its children
206-
* `linkTarget` (`string` or `(href, children, title) => string`, optional)\
207-
target to use on links (such as `_blank` for `<a target="_blank"…`)
208206
* `transformLinkUri` (`(href, children, title) => string`, default:
209207
[`uriTransformer`][uri-transformer], optional)\
210208
change URLs on links, pass `null` to allow all URLs, see [security][]
@@ -632,8 +630,6 @@ Optionally, components will also receive:
632630
— see `rawSourcePos` option
633631
* `index` and `siblingCount` (`number`)
634632
— see `includeElementIndex` option
635-
* `target` on `a` (`string`)
636-
— see `linkTarget` option
637633

638634
## Security
639635

test/test.jsx

-56
Original file line numberDiff line numberDiff line change
@@ -231,62 +231,6 @@ test('should handle titles of links', () => {
231231
assert.equal(actual, '<p>Empty: <a href="#" title="x"></a></p>')
232232
})
233233

234-
test('should use target attribute for links if specified', () => {
235-
const input = 'This is [a link](https://espen.codes/) to Espen.Codes.'
236-
const actual = asHtml(<Markdown children={input} linkTarget="_blank" />)
237-
assert.equal(
238-
actual,
239-
'<p>This is <a href="https://espen.codes/" target="_blank">a link</a> to Espen.Codes.</p>'
240-
)
241-
})
242-
243-
test('should call function to get target attribute for links if specified', () => {
244-
const input = 'This is [a link](https://espen.codes/) to Espen.Codes.'
245-
const actual = asHtml(
246-
<Markdown
247-
children={input}
248-
linkTarget={(uri) => (uri.startsWith('http') ? '_blank' : undefined)}
249-
/>
250-
)
251-
assert.equal(
252-
actual,
253-
'<p>This is <a href="https://espen.codes/" target="_blank">a link</a> to Espen.Codes.</p>'
254-
)
255-
})
256-
257-
test('should handle links with custom target transformer', () => {
258-
const input = 'Empty: []()'
259-
260-
const actual = asHtml(
261-
<Markdown
262-
children={input}
263-
linkTarget={(uri, _, title) => {
264-
assert.equal(uri, '', '`uri` should be an empty string')
265-
assert.equal(title, null, '`title` should be null')
266-
return undefined
267-
}}
268-
/>
269-
)
270-
271-
assert.equal(actual, '<p>Empty: <a href=""></a></p>')
272-
})
273-
274-
test('should handle links w/ titles with custom target transformer', () => {
275-
const input = 'Empty: [](a "b")'
276-
277-
const actual = asHtml(
278-
<Markdown
279-
children={input}
280-
linkTarget={(_, _1, title) => {
281-
assert.equal(title, 'b', '`title` should be given')
282-
return undefined
283-
}}
284-
/>
285-
)
286-
287-
assert.equal(actual, '<p>Empty: <a href="a" title="b"></a></p>')
288-
})
289-
290234
test('should support images without alt, url, or title', () => {
291235
const input = '![]()'
292236
const actual = asHtml(<Markdown children={input} transformLinkUri={null} />)

0 commit comments

Comments
 (0)