Extract image links of the form  from markdown content.
(content)
| 290 | |
| 291 | |
| 292 | def extract_image_links(content): |
| 293 | """Extract image links of the form  from markdown content. |
| 294 | """ |
| 295 | return re.findall(r'!\[.*?\]\(\.\./imgs/([\d.]+)/([^)]+)\)', content) |
| 296 | |
| 297 | |
| 298 | def create_release_index(basedir): |
no outgoing calls
no test coverage detected