i have multiple markdown files that contain images without alt that look like:
# my file

# this is an example image

i want to replace them with alt from the filename but without the .png extension & without ./ & replacing hyphens (- ) with empty spaces.
so the above markdown would look like:
# my file

# this is an example image

i can't do this manually as i have 100 images so would love to automate this with a regex using vscode's find & replace.

