2

我有一个 HTML 文件,其中包含一堆指向整个数据库的链接。但是 URL 都写成:

<a href=/bw/examplefile.html>

当我尝试使用 wget 下载所有链接时,我使用 --base 参数来设置 URL,但它似乎并不能很好地工作。因此,与其摆弄我知道我不会再使用的东西,我只想知道如何在 emacs 中轻松地将 URL 添加到每个链接对象。

我在 Mac 上使用 Aquamacs。不确定这是否有太大的不同,但它可能是有用的信息。

4

1 回答 1

5

I expect the following is what you want, to turn your relative URLs into absolute URLs (and add the attribute quotes, which is a little nicer).

M-x replace-regexp RET <a href=\(.+?\)> RET <a href="http://example.com\1"> RET

于 2012-06-12T05:31:40.383 回答