File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ The `MarkdownViewer` displays rendered Markdown with appropriate styling and han
19
19
const MarkdownViewerExample = () => {
20
20
return (
21
21
// eslint-disable-next-line github/unescaped-html-literal
22
- < MarkdownViewer dangerousRenderedHtml = {{__html: ' <strong>Lorem ipsum</strong> dolor sit amet.' }} / >
22
+ < MarkdownViewer dangerousRenderedHTML = {{__html: ' <strong>Lorem ipsum</strong> dolor sit amet.' }} / >
23
23
)
24
24
}
25
25
@@ -33,7 +33,7 @@ const MarkdownViewerExample = () => {
33
33
return (
34
34
< MarkdownViewer
35
35
// eslint-disable-next-line github/unescaped-html-literal
36
- dangerousRenderedHtml = {{__html: " <a href='https://example.com'>Example link</a>" }}
36
+ dangerousRenderedHTML = {{__html: " <a href='https://example.com'>Example link</a>" }}
37
37
onLinkClick= {ev => console .log (ev)}
38
38
/ >
39
39
)
@@ -64,7 +64,7 @@ const renderedHtml = `
64
64
const MarkdownViewerExample = () => {
65
65
return (
66
66
< MarkdownViewer
67
- dangerousRenderedHtml = {{__html: renderedHtml}}
67
+ dangerousRenderedHTML = {{__html: renderedHtml}}
68
68
markdownValue= {markdownSource}
69
69
onChange= {value => console .log (value) /* save the value to the server */ }
70
70
disabled= {false }
You can’t perform that action at this time.
0 commit comments