(attributes)
| 3449 | } |
| 3450 | |
| 3451 | function markdownLink(attributes) { |
| 3452 | var href = attributes.href || ""; |
| 3453 | if (href) { |
| 3454 | return { |
| 3455 | start: "[", |
| 3456 | end: "](" + href + ")", |
| 3457 | anchorPosition: "before" |
| 3458 | }; |
| 3459 | } else { |
| 3460 | return {}; |
| 3461 | } |
| 3462 | } |
| 3463 | |
| 3464 | function markdownImage(attributes) { |
| 3465 | var src = attributes.src || ""; |
nothing calls this directly
no outgoing calls
no test coverage detected