[eluser]Unknown[/eluser]
Hi! Thanks for the welcome.
Grepping or regexing through your docs does seem to be the only viable solution at the moment.
Since someone else who is looking for advise might find this, here's what I did with some quick minute regex to replace my relative asset references in my doc markup files.
Code:
hhref="(?!http)(?!<\\\\?)(?!//)(.*?)"
(?!<\?) there should only be a single backslash there. Dunno why the forum keeps escaping it in the code example above.
Replace href with src accordingly.
Search and replace and use the last variable as your replace reference concatenated to <?=base_url()?> or whatever path you choose.