(attributes)
| 3462 | } |
| 3463 | |
| 3464 | function markdownImage(attributes) { |
| 3465 | var src = attributes.src || ""; |
| 3466 | var altText = attributes.alt || ""; |
| 3467 | if (src || altText) { |
| 3468 | return {start: ""}; |
| 3469 | } else { |
| 3470 | return {}; |
| 3471 | } |
| 3472 | } |
| 3473 | |
| 3474 | function markdownList(options) { |
| 3475 | return function(attributes, list) { |
nothing calls this directly
no outgoing calls
no test coverage detected