Skip to content

Commit 87d8099

Browse files
authored
feat: allow download attr in a-tags (#39)
1 parent bcfd936 commit 87d8099

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

__tests__/__snapshots__/index.test.js.snap

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
exports[`anchor target: should allow _blank if using HTML 1`] = `"<p><a href=\\"https://example.com\\" target=\\"_blank\\" title=\\"\\">test</a></p>"`;
44
5+
exports[`anchor target: should allow download if using HTML 1`] = `"<p><a download=\\"example.png\\" href=\\"\\" target=\\"_blank\\" title=\\"\\">test</a></p>"`;
6+
57
exports[`anchor target: should default to _self 1`] = `"<p><a href=\\"https://example.com\\" target=\\"_self\\" title=\\"\\">test</a></p>"`;
68
79
exports[`anchors 1`] = `

__tests__/index.test.js

+6
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,12 @@ test('anchor target: should allow _blank if using HTML', () => {
105105
expect(mount(markdown.default('<a href="https://example.com" target="_blank">test</a>')).html()).toMatchSnapshot();
106106
});
107107

108+
test('anchor target: should allow download if using HTML', () => {
109+
expect(
110+
mount(markdown.default('<a download="example.png" href="" target="_blank">test</a>')).html()
111+
).toMatchSnapshot();
112+
});
113+
108114
test('anchors with baseUrl', () => {
109115
const wrapper = mount(
110116
React.createElement(

components/Anchor.jsx

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ function Anchor(props) {
5757
Anchor.propTypes = {
5858
baseUrl: PropTypes.string,
5959
children: PropTypes.node.isRequired,
60+
download: PropTypes.string,
6061
href: PropTypes.string,
6162
target: PropTypes.string,
6263
title: PropTypes.string,

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ sanitize.attributes['rdme-embed'] = [
7878
'favicon',
7979
];
8080

81-
sanitize.attributes.a = ['href', 'title', 'class', 'className'];
81+
sanitize.attributes.a = ['href', 'title', 'class', 'className', 'download'];
8282

8383
sanitize.tagNames.push('figure');
8484
sanitize.tagNames.push('figcaption');

0 commit comments

Comments
 (0)