bobbyrne01 / save-text-to-file-firefox

Firefox addon that saves highlighted text to a file.
https://addons.mozilla.org/firefox/addon/save-text-to-file/
GNU General Public License v3.0
94 stars 30 forks source link

Convert relative paths to absolute paths when saving HTML text #77

Open PointyWizardHat opened 9 years ago

PointyWizardHat commented 9 years ago

Hi, When saving the selection as HTML text, I would like the relative paths to be automatically converted to absolute paths. This way if I parse the text into HTML later, all the images and links will work.

I'm not that familiar with HTML so in case I used incorrect terms, just to be clear I mean: if the selection includes a link like

<img src="./thumb/image.png"> OR <a href="./links/screen/index.html" >

the script would save those as

<img src="http://www.site.com/thumb/image.png"> OR <a href="http://www.site.com/links/screen/index.html">

Thanks!