1
我想添加內部鏈接到某些關鍵字,如鏈接所有字index
到我的網站的主頁。將鏈接添加到特定關鍵字
我打算使用BeautifulSoup4,但我不知道如何將標籤添加到元素中的某個單詞。
這就是我想要的。
<div>You can find the content from the index page</div>
要
<div>You can find the content from the <a href='index.html'>index</a> page</div>
具有挑戰性的部分在這裏簡單replace
可能不能很好的工作在這裏,因爲如果這個詞是什麼index
已經是一個鏈接?那麼它將被完全screwd成類似
<div>You can find the content from the <a href='index.html'><a href="index.html">index</a></a></div>
我喜歡這種在Beautifulsoup實現與邏輯包括:如果單詞已經是一個內部鏈接或不
- 檢查提取該特定字詞並添加鏈接。
謝謝!