My HTML code is this :
<h3>Head1</h3>
<p>text before link<a href="http://www.google.com" title="http://www.google.com" target="_blank">Link 1</a>text after link</p>
<h3>Head2</h3>
<p>text before link<a href="http://www.google.com" title="http://www.google.com" target="_blank">Link 2</a>text after link</p>
<h3>Head3</h3>
<p>text before link<a href="http://www.google.com" title="http://www.google.com" target="_blank">Link 3</a>text after link</p>
I am using NOKOGIRI for the HTML parsing. In Above case, Suppose above html code is in @text
@page_data = Nokogiri::HTML(@text)
@headings = @page_data.css('h3')
@desc = @page_data.css('p')
But in @desc , It only return the text ,It will not create the link for "Link 1","Link 2","Link 3".
Becoz the link is present in between the text , So i can not link it separately again.
How can i achieve the text with link in "p" tag in this case ?