@rere003
I'm not sure I understand what you're wanting to accomplish. In the bestfreespinner link, the tags are a list (<li>) not a paragraph (<p>).
Are you wanting to pull the text at a certain <br>?
Edit: I understand now, here's a little script that uses Javascript function and runs
"document.querySelector('#shop-948696 > div:nth-child(4) > p').innerHTML" (#shop-948696 > div:nth-child(4) > p can be copied with the debugger. Right click the tag > Copy > Copy Selector)
Then uses [[SAVED_SCRIPT_RESULT]].replace(/<br>/g, '\n') AND the built in "Replace String " function.
You can also combine the Javascript from which would work in a one line;
document.querySelector('#shop-948696 > div:nth-child(4) > p').innerHTML
To:
(document.querySelector('#shop-948696 > div:nth-child(4) > p').innerHTML).replace(/<br>/g, '\n')
Hope this helps :)
0_1494392252422_sample.xml