Home
Head's Up: I'm in the middle of upgrading my site. Most things are in place, but there are something missing and/or broken including image alt text. Please bear with me while I'm getting things fixed.

sed Examples

These examples got mangled in a site transition. TODO : is to get them fixed.

Starting to collect some of the sed command I run. Not sure if they'll be interesting or not.

A good enhancement would be to make little snippts instead of full thing. Like how do I capture a parenthesis

Convert markdown images to neopolitan

code full
sed -E -i "" 's/\!\[Image: [^]]+\]\(([^\)]+)\)/<<\1|img>>/g' a.txt
results start code full
sed -E -i "" 's/\[\!\[image\]\(([^\)]+)\)([^\)]+)\)/<<\1|img>>/g' a.txt
results start code full
sed -E -i "" 's/\!\[([^\]+)]\(([^\)]+)\)/<<\2|img|caption: \1>>/g'
results start